mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
37 lines
No EOL
1.9 KiB
XML
37 lines
No EOL
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
|
android:background="?attr/darkBackground"
|
|
android:id="@+id/download_child_root"
|
|
android:orientation="vertical"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context=".ui.download.DownloadFragment">
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
android:background="@android:color/transparent"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
android:id="@+id/download_child_toolbar"
|
|
android:paddingTop="@dimen/navbarHeight"
|
|
tools:title="Overlord"
|
|
android:background="?attr/darkBackground"
|
|
app:navigationIconTint="?attr/iconColor"
|
|
app:titleTextColor="?attr/textColor"
|
|
app:layout_scrollFlags="scroll|enterAlways"
|
|
android:layout_width="match_parent" android:layout_height="wrap_content">
|
|
</com.google.android.material.appbar.MaterialToolbar>
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:background="?attr/bitDarkerGrayBackground"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
|
android:padding="10dp"
|
|
tools:listitem="@layout/download_child_episode"
|
|
android:id="@+id/download_child_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
</androidx.recyclerview.widget.RecyclerView>
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout> |