summaryrefslogtreecommitdiffstats
path: root/res/layout/bookmark.xml
blob: 9b765d4d97c60489dbd83122853829aad17ca934 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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:paddingBottom="30dip"
        android:gravity ="center"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:text="@string/bookmark_empty"
        android:visibility="gone"
        />
</FrameLayout>