NewPipe/app/src/main/res/layout/select_channel_fragment.xml

43 lines
1.6 KiB
XML
Raw Normal View History

2017-09-26 17:29:38 +02:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
2017-10-13 13:55:55 +02:00
android:layout_height="match_parent"
2020-10-09 20:24:02 +02:00
android:orientation="vertical"
2017-10-13 13:55:55 +02:00
android:padding="13dp">
2017-09-26 17:29:38 +02:00
<org.schabi.newpipe.views.NewPipeTextView
2017-09-26 17:29:38 +02:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
2020-10-09 20:24:02 +02:00
android:layout_marginLeft="10dp"
2017-09-26 17:29:38 +02:00
android:layout_marginTop="5dp"
2017-10-13 13:55:55 +02:00
android:layout_marginEnd="5dp"
2020-10-09 20:24:02 +02:00
android:layout_marginRight="5dp"
android:layout_marginBottom="10dp"
android:text="@string/select_a_channel"
android:textAppearance="?android:attr/textAppearanceLarge" />
2017-09-26 17:29:38 +02:00
2019-10-04 14:59:08 +02:00
<androidx.recyclerview.widget.RecyclerView
2017-09-26 17:29:38 +02:00
android:id="@+id/items_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:listitem="@layout/select_channel_item" />
2017-09-26 17:29:38 +02:00
<org.schabi.newpipe.views.NewPipeTextView
2017-09-26 17:29:38 +02:00
android:id="@+id/empty_state_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2020-10-09 20:24:02 +02:00
android:layout_margin="10dp"
2017-09-26 17:29:38 +02:00
android:text="@string/no_channel_subscribed_yet"
2020-10-09 20:24:02 +02:00
android:textAppearance="?android:attr/textAppearanceListItem" />
2017-09-26 17:29:38 +02:00
<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2020-10-09 20:24:02 +02:00
android:layout_margin="5dp" />
</LinearLayout>