]> gitweb.fperrin.net Git - Dictionary.git/blob - res/layout/edit_activity.xml
8c4282401699973df6913db0499931e3a5b80175
[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   <TextView 
51     android:id="@+id/dictionaryInfoTitle" 
52     android:text="@string/dictionaryInfo"
53     android:layout_width="wrap_content" 
54     android:layout_height="wrap_content"
55     android:paddingTop="5dip" />
56   <TextView 
57     android:id="@+id/dictionaryInfo" 
58     android:text=""
59     android:layout_width="wrap_content" 
60     android:layout_height="wrap_content"
61     android:paddingTop="20dip" />
62
63 </LinearLayout>
64
65 </ScrollView>