]> gitweb.fperrin.net Git - Dictionary.git/blob - res/layout/edit_activity.xml
go
[Dictionary.git] / res / layout / edit_activity.xml
1 <ScrollView android:id="@+id/ScrollView01"
2         xmlns:android="http://schemas.android.com/apk/res/android"
3         android:layout_width="fill_parent" 
4         android:layout_height="wrap_content">
5         
6 <LinearLayout 
7         android:id="@+id/LinearLayout01"
8         android:orientation="vertical"
9         android:layout_width="fill_parent"
10         android:layout_height="wrap_content"
11         >
12
13 <!--     android:textAppearance="?android:attr/textAppearanceLarge"  -->
14
15   <!-- Name. --> 
16   <TextView 
17     android:id="@+id/dictionaryNameTitle" 
18     android:text="@string/dictionaryName"
19     android:layout_width="wrap_content" 
20     android:layout_height="wrap_content" />
21   <EditText 
22     android:id="@+id/dictionaryName" 
23     android:layout_width="fill_parent" 
24     android:layout_height="wrap_content" />
25
26   <!-- Local file. --> 
27   <TextView 
28     android:id="@+id/localFileTitle" 
29     android:text="@string/localFile"
30     android:layout_width="wrap_content" 
31     android:layout_height="wrap_content"
32     android:paddingTop="5dip" />
33   <EditText 
34     android:id="@+id/localFile" 
35     android:layout_width="fill_parent" 
36     android:layout_height="wrap_content" />
37
38   <!-- Download URL. --> 
39   <TextView 
40     android:id="@+id/downloadUrlTitle" 
41     android:text="@string/downloadUrl"
42     android:layout_width="wrap_content" 
43     android:layout_height="wrap_content"
44     android:paddingTop="5dip" />
45   <EditText 
46     android:id="@+id/downloadUrl" 
47     android:layout_width="fill_parent" 
48     android:layout_height="wrap_content" />
49
50  <LinearLayout 
51    android:id="@+id/LinearLayout03"
52    android:orientation="horizontal"
53    android:layout_width="wrap_content"
54    android:layout_height="wrap_content"
55    >
56
57   <Button
58     android:id="@+id/downloadButton"
59     android:text="@string/downloadButton"
60     android:layout_width="wrap_content" 
61     android:layout_height="wrap_content"
62    />
63   <Button
64     android:id="@+id/openButton"
65     android:text="@string/openButton"
66     android:layout_width="wrap_content" 
67     android:layout_height="wrap_content"
68    />
69  </LinearLayout>
70
71   <TextView 
72     android:id="@+id/dictionaryInfoTitle" 
73     android:text="@string/dictionaryInfo"
74     android:layout_width="wrap_content" 
75     android:layout_height="wrap_content"
76     android:paddingTop="5dip" />
77   <TextView 
78     android:id="@+id/dictionaryInfo" 
79     android:text=""
80     android:layout_width="wrap_content" 
81     android:layout_height="wrap_content"
82     android:paddingTop="20dip" />
83
84 </LinearLayout>
85
86 </ScrollView>