1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2024-11-28 07:11:17 +00:00
syncthing-android/src/main/res/layout/dialog_loading.xml

20 lines
677 B
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2015-09-01 15:06:05 +00:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
2015-09-01 15:06:05 +00:00
android:layout_height="wrap_content"
android:padding="@dimen/abc_action_bar_content_inset_material"
2015-09-01 15:06:05 +00:00
android:gravity="center">
<ProgressBar
android:id="@+id/progress"
android:layout_width="wrap_content"
2015-09-01 15:06:05 +00:00
android:layout_height="wrap_content"
android:layout_marginRight="8dp"
android:layout_marginEnd="8dp" />
<TextView
android:id="@+id/loading_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
2015-09-01 15:06:05 +00:00
</LinearLayout>