summaryrefslogtreecommitdiffstats
path: root/res/layout/bookmark.xml
blob: ac4ac34a417c394d47145ab5eafe1bd44224e19d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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>