source: other-projects/tipple-android/res/layout/custom_dialog.xml@ 26523

Last change on this file since 26523 was 26523, checked in by davidb, 11 years ago

A version of Tipple with the mods Casey made for her Masters work

File size: 1.4 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<ScrollView android:id="@+id/ScrollView01"
3 android:layout_width="fill_parent"
4 android:layout_height="fill_parent"
5 xmlns:android="http://schemas.android.com/apk/res/android">
6
7<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
8 android:id="@+id/layout_root"
9 android:orientation="vertical"
10 android:layout_width="fill_parent"
11 android:layout_height="fill_parent"
12 android:padding="10dp"
13 android:scrollbars="vertical"
14 android:scrollbarAlwaysDrawVerticalTrack="true"
15 >
16 <ImageView android:id="@+id/image"
17 android:layout_width="wrap_content"
18 android:layout_height="wrap_content"
19 android:layout_marginRight="10dp"
20 android:layout_marginBottom="10dp"
21 />
22 <TextView android:id="@+id/text"
23 android:layout_width="wrap_content"
24 android:layout_height="wrap_content"
25 android:textColor="#FFF"
26 />
27 <Button android:id="@+id/button"
28 android:layout_width="fill_parent"
29 android:layout_height="wrap_content"
30 android:text="Take Photo"
31 android:visibility="gone"
32 android:enabled="false"
33 android:layout_weight="1"/>
34
35</LinearLayout>
36</ScrollView>
Note: See TracBrowser for help on using the repository browser.