]> gitweb.fperrin.net Git - Dictionary.git/blob - res/layout/downloadable_dictionary_row.xml
e4f59889533359b8d42de3c049e3bb3eb743a922
[Dictionary.git] / res / layout / downloadable_dictionary_row.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3     xmlns:tools="http://schemas.android.com/tools"
4     android:layout_width="match_parent"
5     android:layout_height="match_parent"
6     android:orientation="vertical" >
7
8     <LinearLayout
9         android:layout_width="match_parent"
10         android:layout_height="wrap_content"
11         android:orientation="horizontal" >
12
13         <LinearLayout
14             android:id="@+id/dictionaryLauncherButtons"
15             android:layout_width="wrap_content"
16             android:layout_height="wrap_content"
17             android:orientation="horizontal"
18             android:paddingRight="5dip" >
19         </LinearLayout>
20
21         <TextView
22             android:id="@+id/dictionaryName"
23             android:layout_width="0dp"
24             android:layout_height="wrap_content"
25             android:layout_weight="1"
26             android:text="English-German"
27             android:textAppearance="?android:attr/textAppearanceMedium"
28             tools:ignore="HardcodedText" />
29
30         <Button
31             android:id="@+id/downloadButton"
32             android:layout_width="wrap_content"
33             android:layout_height="wrap_content"
34             android:drawableRight="@drawable/ic_action_download"
35             android:textAppearance="?android:attr/textAppearanceSmall"
36             android:text="@string/downloadButton" />
37     </LinearLayout>
38
39     <TextView
40         android:id="@+id/dictionaryDetails"
41         android:layout_width="fill_parent"
42         android:layout_height="0dip"
43         android:layout_weight="1"
44         android:text="@string/indexInfo"
45         android:textAppearance="?android:attr/textAppearanceSmall"
46         tools:ignore="HardcodedText" />
47
48 </LinearLayout>