AquaStream/app/src/main/res/layout/dialog_loading.xml

28 lines
1.2 KiB
XML
Raw Normal View History

2021-06-10 19:43:05 +00:00
<?xml version="1.0" encoding="utf-8"?>
2022-01-29 18:57:19 +00:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
2021-10-31 01:17:56 +00:00
<!--
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
android:text="Loading..." android:textColor="?attr/textColor" android:textSize="20sp"
android:textStyle="bold" android:layout_margin="10dp"/>-->
2021-06-14 16:58:43 +00:00
<!-- style="@android:style/Widget.Material.ProgressBar.Horizontal"
-->
2021-10-31 01:17:56 +00:00
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/loading_chromecast"
android:layout_gravity="center"
android:textColor="@color/textColor"
android:textSize="20sp"
android:textStyle="bold"
2022-01-29 18:57:19 +00:00
android:layout_margin="10dp" />
2021-06-14 16:58:43 +00:00
<ProgressBar
2021-06-15 16:07:20 +00:00
android:layout_margin="20dp"
2021-06-14 16:58:43 +00:00
android:layout_gravity="center"
android:layout_width="60dp"
2022-01-29 18:57:19 +00:00
android:layout_height="60dp" />
2021-06-10 19:43:05 +00:00
</LinearLayout>