summaryrefslogtreecommitdiff
path: root/platform/android/viewer/res/layout/outline_entry.xml
blob: ea7912e455caa37a8acf31522ac1d8671ce5f571 (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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
	android:layout_width="match_parent"
	android:layout_height="wrap_content" >

	<TextView
		android:id="@+id/title"
		android:layout_width="wrap_content"
		android:layout_height="wrap_content"
		android:layout_alignParentLeft="true"
		android:layout_toLeftOf="@+id/page"
		android:singleLine="true"
		android:layout_centerVertical="true"
		android:paddingLeft="8dp"
		android:textAppearance="?android:attr/textAppearanceMedium" />

	<TextView
		android:id="@+id/page"
		android:layout_width="wrap_content"
		android:layout_height="wrap_content"
		android:layout_alignBaseline="@+id/title"
		android:layout_alignBottom="@+id/title"
		android:layout_alignParentRight="true"
		android:paddingRight="8dp"
		android:textAppearance="?android:attr/textAppearanceMedium" />

</RelativeLayout>