summaryrefslogtreecommitdiff
path: root/platform/android/res/layout/outline_entry.xml
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/res/layout/outline_entry.xml')
-rw-r--r--platform/android/res/layout/outline_entry.xml27
1 files changed, 27 insertions, 0 deletions
diff --git a/platform/android/res/layout/outline_entry.xml b/platform/android/res/layout/outline_entry.xml
new file mode 100644
index 00000000..ea7912e4
--- /dev/null
+++ b/platform/android/res/layout/outline_entry.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="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>