mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
28 lines
No EOL
1.2 KiB
XML
28 lines
No EOL
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<!--
|
|
<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"/>-->
|
|
<!-- style="@android:style/Widget.Material.ProgressBar.Horizontal"
|
|
-->
|
|
<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"
|
|
android:layout_margin="10dp" />
|
|
|
|
<ProgressBar
|
|
android:layout_margin="20dp"
|
|
|
|
android:layout_gravity="center"
|
|
android:layout_width="60dp"
|
|
android:layout_height="60dp" />
|
|
</LinearLayout> |