2015-09-03 17:19:29 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-08-18 09:30:03 +00:00
|
|
|
android:layout_width="match_parent"
|
2015-09-03 17:19:29 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2014-06-27 15:24:23 +00:00
|
|
|
|
2015-09-03 17:19:29 +00:00
|
|
|
<include layout="@layout/widget_toolbar" />
|
|
|
|
|
|
|
|
<FrameLayout
|
2014-08-18 09:30:03 +00:00
|
|
|
android:layout_width="match_parent"
|
2015-09-03 17:19:29 +00:00
|
|
|
android:layout_height="match_parent">
|
2014-06-27 15:24:23 +00:00
|
|
|
|
2015-09-03 17:19:29 +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
|
|
|
|
2015-09-03 17:19:29 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@android:id/empty"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:text="@string/directory_empty" />
|
|
|
|
</FrameLayout>
|
|
|
|
</LinearLayout>
|