diff options
| author | kr.angelov <kr.angelov@gmail.com> | 2013-10-11 08:15:33 +0000 |
|---|---|---|
| committer | kr.angelov <kr.angelov@gmail.com> | 2013-10-11 08:15:33 +0000 |
| commit | c40c5022caf18667b607578e3fb702bbe36ee836 (patch) | |
| tree | 10cfe301259531e39dd2a65b6910a50e4e69a905 /src/ui/android/res/layout/lexical_item.xml | |
| parent | 4d50c08714cc8d978bb2279e904204955e6c094a (diff) | |
better lexicon view
Diffstat (limited to 'src/ui/android/res/layout/lexical_item.xml')
| -rw-r--r-- | src/ui/android/res/layout/lexical_item.xml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/ui/android/res/layout/lexical_item.xml b/src/ui/android/res/layout/lexical_item.xml new file mode 100644 index 000000000..0c56b6730 --- /dev/null +++ b/src/ui/android/res/layout/lexical_item.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" + android:layout_height="fill_parent" > + <ImageView + android:id="@+id/icon" + android:layout_width="30dp" + android:layout_height="30dp" + android:contentDescription="@string/open_image" + android:src="@drawable/open_arrow" + android:paddingLeft="10dp" + android:paddingRight="5dp" /> + + <TextView + android:id="@+id/lexical_desc" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:layout_toRightOf="@+id/icon" + android:paddingLeft="10dp" + android:textSize="25sp"/> +</RelativeLayout>
\ No newline at end of file |
