]> gitweb.fperrin.net Git - Dictionary.git/blob - res/layout/dictionary_manager_row.xml
Picking back up in the middle of a major refactoring of the UI, tyring
[Dictionary.git] / res / layout / dictionary_manager_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         <TextView
14             android:id="@+id/dictionaryName"
15             android:layout_width="0dp"
16             android:layout_height="wrap_content"
17             android:layout_weight="1"
18             android:text="English-German"
19             android:textAppearance="?android:attr/textAppearanceLarge"
20             tools:ignore="HardcodedText" />
21
22         <Button
23             android:id="@+id/dictionaryDownloadButton"
24             android:layout_width="wrap_content"
25             android:layout_height="wrap_content"
26             android:layout_weight="0"
27             android:drawableLeft="@android:drawable/ic_menu_add"
28             android:text="@string/downloadButton" />
29     </LinearLayout>
30
31     <TextView
32         android:id="@+id/dictionaryDetails"
33         android:layout_width="fill_parent"
34         android:layout_height="0dip"
35         android:layout_weight="1"
36         android:text="@string/indexInfo"
37         android:textAppearance="?android:attr/textAppearanceSmall"
38         tools:ignore="HardcodedText" />
39
40 </LinearLayout>