Audinaut-subsonic-app-android/app/src/main/res/layout/tab_progress.xml

33 lines
1.2 KiB
XML
Raw Normal View History

2016-12-18 18:41:30 +01:00
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2018-03-24 20:25:12 +01:00
android:id="@+id/tab_progress"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:clickable="true"
android:visibility="gone">
2016-12-18 18:41:30 +01:00
2018-03-24 20:25:12 +01:00
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2018-03-25 03:28:28 +02:00
android:layout_gravity="center"
android:orientation="vertical">
2016-12-18 18:41:30 +01:00
2018-03-24 20:25:12 +01:00
<ProgressBar
android:id="@+id/tab_progress_spinner"
style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
2018-03-25 03:28:28 +02:00
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginRight="6dp" />
2016-12-18 18:41:30 +01:00
2018-03-24 20:25:12 +01:00
<TextView
android:id="@+id/tab_progress_message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
2018-03-25 03:28:28 +02:00
android:text="@string/progress.wait"
2018-03-24 20:25:12 +01:00
android:textAppearance="?android:attr/textAppearanceMedium"
2018-03-25 03:28:28 +02:00
android:textColor="?android:textColorPrimary" />
2018-03-24 20:25:12 +01:00
</LinearLayout>
</FrameLayout>