2021-07-18 23:57:04 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-07-19 13:19:47 +00:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
2021-10-31 01:17:56 +00:00
|
|
|
android:background="?attr/primaryGrayBackground"
|
2021-07-18 23:57:04 +00:00
|
|
|
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">
|
2021-07-19 13:19:47 +00:00
|
|
|
<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"
|
2021-10-31 01:17:56 +00:00
|
|
|
android:background="?attr/primaryGrayBackground"
|
2021-07-19 13:19:47 +00:00
|
|
|
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>
|
|
|
|
|
2021-07-18 23:57:04 +00:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2021-10-09 21:59:37 +00:00
|
|
|
android:nextFocusUp="@id/download_child_toolbar"
|
|
|
|
|
2021-09-19 20:33:39 +00:00
|
|
|
android:background="?attr/primaryBlackBackground"
|
2021-07-19 13:19:47 +00:00
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
|
|
|
android:padding="10dp"
|
2021-07-18 23:57:04 +00:00
|
|
|
tools:listitem="@layout/download_child_episode"
|
|
|
|
android:id="@+id/download_child_list"
|
|
|
|
android:layout_width="match_parent"
|
2021-07-19 13:19:47 +00:00
|
|
|
android:layout_height="match_parent">
|
2021-07-18 23:57:04 +00:00
|
|
|
</androidx.recyclerview.widget.RecyclerView>
|
2021-07-19 13:19:47 +00:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|