21 lines
763 B
XML
21 lines
763 B
XML
<?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>
|