2014-06-27 15:24:23 +00:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-08-18 09:30:03 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
2014-06-27 15:24:23 +00:00
|
|
|
|
2014-08-18 09:30:03 +00:00
|
|
|
<ListView
|
|
|
|
android:id="@android:id/list"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
2014-06-27 15:24:23 +00:00
|
|
|
|
2014-08-18 09:30:03 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@android:id/empty"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/directory_empty"
|
|
|
|
android:layout_centerInParent="true" />
|
2014-06-27 15:24:23 +00:00
|
|
|
|
|
|
|
</RelativeLayout>
|