]> gitweb.fperrin.net Git - Dictionary.git/blob - res/layout/edit_activity.xml
58e4b3568c4379500ca44ef49f31c6a3dbaf3e73
[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   <!-- Local file. --> 
39   <TextView 
40     android:id="@+id/wordListFileTitle" 
41     android:text="@string/wordListFile"
42     android:layout_width="wrap_content" 
43     android:layout_height="wrap_content"
44     android:paddingTop="5dip" />
45   <EditText 
46     android:id="@+id/wordListFile" 
47     android:layout_width="fill_parent" 
48     android:layout_height="wrap_content" />
49
50   <!-- Download URL. --> 
51   <TextView 
52     android:id="@+id/downloadUrlTitle" 
53     android:text="@string/downloadUrl"
54     android:layout_width="wrap_content" 
55     android:layout_height="wrap_content"
56     android:paddingTop="5dip" />
57   <EditText 
58     android:id="@+id/downloadUrl" 
59     android:layout_width="fill_parent" 
60     android:layout_height="wrap_content" />
61
62
63   String localFile = "";
64   String wordList = "";
65   
66   int openIndex = 0;
67   String openWord = "";
68  
69 </LinearLayout>
70
71 </ScrollView>