]> gitweb.fperrin.net Git - Dictionary.git/blob - res/layout/dictionary_activity.xml
Internationalized to German.
[Dictionary.git] / res / layout / dictionary_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" android:layout_width="fill_parent"
6         android:layout_height="fill_parent">
7
8         <LinearLayout 
9                 android:id="@+id/SearchBarLinearLayout"
10                 android:layout_height="wrap_content"
11                 android:layout_width="fill_parent">
12                 
13                         <EditText 
14                                 android:id="@+id/SearchText"
15                                 android:hint="@string/searchText"
16                                 android:layout_width="0dip"
17                                 android:layout_height="wrap_content" 
18         android:imeOptions="actionSearch|flagNoEnterAction|flagNoExtractUi"
19                                 android:layout_weight="1.0" 
20         android:inputType="text"/>
21
22 <!--          android:imeOptions="actionSearch|flagNoEnterAction|flagNoExtractUi" -->
23                                 
24       <Button 
25         android:id="@+id/ClearSearchTextButton"
26         android:text="&lt;x"
27         android:minWidth="50dip"
28         android:layout_width="wrap_content"
29         android:layout_height="wrap_content"
30         />
31
32                         <Button 
33                                 android:id="@+id/LangButton"
34                                 android:text="LANG"
35                                 android:minWidth="50dip"
36                                 android:layout_width="wrap_content"
37                                 android:layout_height="wrap_content"
38                                 />
39                                 
40                         <Button
41                                 android:id="@+id/DownButton"
42                                 android:text="v"
43                                 android:minWidth="50dip"
44                                 android:layout_width="wrap_content"
45                                 android:layout_height="wrap_content" 
46                                 />
47                                 
48                         <Button 
49                                 android:id="@+id/UpButton"
50                                 android:text="^"
51                                 android:minWidth="50dip"
52                                 android:layout_width="wrap_content"
53                                 android:layout_height="wrap_content" 
54                                 />
55                 
56         </LinearLayout>
57
58         <ListView 
59                 android:id="@id/android:list" 
60                 android:layout_width="fill_parent"
61                 android:layout_height="fill_parent" 
62                 android:choiceMode="singleChoice"
63                 android:clickable="true" 
64                 android:focusableInTouchMode="true"
65                 android:focusable="true"/>
66
67 </LinearLayout>