summaryrefslogtreecommitdiffstats
path: root/res/layout/bookmark.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/bookmark.xml')
-rw-r--r--res/layout/bookmark.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/res/layout/bookmark.xml b/res/layout/bookmark.xml
new file mode 100644
index 000000000..ac4ac34a4
--- /dev/null
+++ b/res/layout/bookmark.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent" >
+
+ <ListView
+ android:id="@android:id/list"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent" />
+
+ <TextView
+ android:id="@android:id/empty"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_centerInParent="true"
+ android:gravity="center"
+ android:paddingBottom="30dip"
+ android:text="@string/bookmark_empty"
+ android:textAppearance="?android:attr/textAppearanceLarge"
+ android:visibility="gone" />
+</FrameLayout>