|
|
|
|
@ -7,29 +7,46 @@
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
|
android:id="@+id/appbar"
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/toolbar_layout"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
|
android:background="@drawable/sheet_toolbar_background">
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="36dp"
|
|
|
|
|
android:layout_height="3dp"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:layout_marginTop="12dp"
|
|
|
|
|
android:alpha="0.2"
|
|
|
|
|
android:src="@drawable/tab_rounded_rectangle"
|
|
|
|
|
app:tint="?attr/colorOnSurfaceVariant" />
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
|
android:id="@+id/appbar"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
app:navigationIcon="?actionModeCloseDrawable"
|
|
|
|
|
app:title="@string/chapters" />
|
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
|
android:background="@drawable/sheet_toolbar_background">
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
app:navigationIcon="?actionModeCloseDrawable"
|
|
|
|
|
app:title="@string/chapters" />
|
|
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<org.koitharu.kotatsu.base.ui.list.fastscroll.FastScrollRecyclerView
|
|
|
|
|
android:id="@+id/recyclerView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_below="@id/appbar"
|
|
|
|
|
android:layout_below="@id/toolbar_layout"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
|
|
|
|
|
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior"
|
|
|
|
|
tools:listitem="@layout/item_chapter" />
|
|
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|