]> gitweb.fperrin.net Git - Dictionary.git/blob - res/layout/dictionary_manager_activity.xml
5fc34ce2512c9dfada1351e9af99cbde4a19943f
[Dictionary.git] / res / layout / dictionary_manager_activity.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <LinearLayout 
4         xmlns:android="http://schemas.android.com/apk/res/android"
5         android:orientation="vertical" 
6  android:layout_width="fill_parent"
7         android:layout_height="fill_parent">
8
9     <LinearLayout
10         android:id="@+id/linearLayout1"
11         android:layout_width="match_parent"
12         android:layout_height="wrap_content" >
13
14         <EditText
15             android:id="@+id/filterText"
16             android:layout_width="wrap_content"
17             android:layout_height="wrap_content"
18             android:layout_weight="1"
19             android:hint="@string/managerFilterText" />
20
21         <CheckBox
22             android:id="@+id/showLocal"
23             android:layout_width="wrap_content"
24             android:layout_height="wrap_content"
25             android:layout_weight="0"
26             android:text="@string/managerFilterCheckbox" />
27
28     </LinearLayout>
29
30         <ListView 
31                 android:id="@id/android:list" 
32                 android:layout_width="fill_parent"
33                 android:layout_height="0dip" 
34                 android:choiceMode="singleChoice"
35                 android:clickable="true" 
36                 android:focusable="true"
37     android:layout_weight="1.0"
38     />
39
40    <EditText 
41      android:id="@+id/DictionaryListHeader"
42      android:hint="@string/helpText"
43      android:layout_width="fill_parent"
44      android:layout_height="wrap_content" 
45      android:imeOptions="actionSearch|flagNoEnterAction|flagNoExtractUi"
46      android:inputType="text"/>
47
48 </LinearLayout>