blob: f35d1b9387094a2d231d5bdb13ee5b3946bd7922 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<?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/alternative_desc"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/arrow"
android:paddingLeft="10dp"
android:textSize="25sp"/>
<org.grammaticalframework.ui.android.ParseTreeView
android:id="@+id/desc_details"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/alternative_desc"
android:textSize="25sp"
/>
<TextView
android:id="@+id/abstract_tree"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/desc_details"
android:textSize="15sp"/>
</RelativeLayout>
|