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

38 lines
1 KiB
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
2014-05-06 10:03:09 +00:00
android:id="@+id/loading"
android:layout_centerInParent="true"
2014-05-06 10:28:46 +00:00
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<ProgressBar
android:id="@+id/progress"
android:layout_centerInParent="true"
2014-05-06 10:28:46 +00:00
style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="10dip" />
2014-05-06 10:28:46 +00:00
<TextView
android:id="@+id/loading_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/progress"
android:text="@string/web_gui_loading" />
2014-05-06 10:28:46 +00:00
</RelativeLayout>
2014-05-06 10:03:09 +00:00
</RelativeLayout>