1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2024-11-24 21:31:15 +00:00
syncthing-android/res/layout/main.xml

35 lines
909 B
XML
Raw Normal View History

2014-05-06 10:03:09 +00:00
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
2014-05-06 10:28:46 +00:00
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
2014-05-06 10:03:09 +00:00
<WebView
android:id="@+id/webview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone" />
2014-05-06 10:28:46 +00:00
<RelativeLayout
android:layout_centerInParent="true"
2014-05-06 10:03:09 +00:00
android:id="@+id/loading"
2014-05-06 10:28:46 +00:00
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<ProgressBar
android:id="@+id/progress"
style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
2014-05-06 10:03:09 +00:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2014-05-06 10:28:46 +00:00
android:layout_below="@id/progress"
android:text="@string/web_gui_loading" />
</RelativeLayout>
2014-05-06 10:03:09 +00:00
</RelativeLayout>