mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-24 05:11:15 +00:00
17 lines
559 B
XML
17 lines
559 B
XML
<RelativeLayout 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="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/directory_empty"
|
|
android:layout_centerInParent="true" />
|
|
|
|
</RelativeLayout>
|