summaryrefslogtreecommitdiff
path: root/src/ui/android/res/layout/lexical_item.xml
diff options
context:
space:
mode:
authorkr.angelov <kr.angelov@gmail.com>2014-07-02 11:30:06 +0000
committerkr.angelov <kr.angelov@gmail.com>2014-07-02 11:30:06 +0000
commite0fa95425697685401ebe9c088feb667ebd7a1fe (patch)
treee389a739f5d850b97b2f2f6737793b9ad251e9b6 /src/ui/android/res/layout/lexical_item.xml
parentabb50f9c73ac62d5e881c1eeceeee7452159c513 (diff)
Visualization for parse trees on Android
Diffstat (limited to 'src/ui/android/res/layout/lexical_item.xml')
-rw-r--r--src/ui/android/res/layout/lexical_item.xml27
1 files changed, 27 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..e7f551491
--- /dev/null
+++ b/src/ui/android/res/layout/lexical_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/desc_details"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_below="@id/lexical_desc"/>
+</RelativeLayout> \ No newline at end of file