mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
16 lines
830 B
XML
16 lines
830 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout android:orientation="vertical" xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
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"/>
|
||
|
<androidx.core.widget.ContentLoadingProgressBar
|
||
|
android:layout_margin="10dp"
|
||
|
style="@android:style/Widget.Material.ProgressBar.Horizontal"
|
||
|
android:indeterminate="true"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
/>
|
||
|
</LinearLayout>
|