summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkr.angelov <kr.angelov@gmail.com>2014-04-07 12:41:23 +0000
committerkr.angelov <kr.angelov@gmail.com>2014-04-07 12:41:23 +0000
commit3ff555738995d2c8f7cbc0fbdd600757518df6cb (patch)
tree1a9a3fac719e7d36994505a531b5e48537f2366d
parent8fa202613f53d3fde8ca35486525da5e11697dc1 (diff)
added alternative_item.xml
-rw-r--r--src/ui/android/res/layout/alternative_item.xml27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/ui/android/res/layout/alternative_item.xml b/src/ui/android/res/layout/alternative_item.xml
new file mode 100644
index 000000000..49f090a26
--- /dev/null
+++ b/src/ui/android/res/layout/alternative_item.xml
@@ -0,0 +1,27 @@
+<?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/arrow"
+ 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="wrap_content"
+ android:layout_toRightOf="@id/arrow"
+ android:paddingLeft="10dp"
+ android:textSize="25sp"/>
+
+ <WebView
+ android:id="@+id/lexical_inflection"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_below="@id/lexical_desc"/>
+</RelativeLayout> \ No newline at end of file