2022-08-07 23:03:54 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-08-13 21:49:16 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/extensions_root"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2022-08-07 23:03:54 +00:00
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
2022-08-13 21:49:16 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-08-14 17:53:21 +00:00
|
|
|
android:background="?attr/primaryGrayBackground">
|
2022-08-07 23:03:54 +00:00
|
|
|
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
2022-08-13 21:49:16 +00:00
|
|
|
android:id="@+id/settings_toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/primaryGrayBackground"
|
|
|
|
android:paddingTop="@dimen/navbar_height"
|
|
|
|
app:layout_scrollFlags="scroll|enterAlways"
|
|
|
|
app:menu="@menu/repository"
|
|
|
|
app:navigationIconTint="?attr/iconColor"
|
|
|
|
app:titleTextColor="?attr/textColor"
|
|
|
|
tools:title="Overlord" />
|
|
|
|
|
2023-07-13 21:18:37 +00:00
|
|
|
<include layout="@layout/tvtypes_chips_scroll" android:id="@+id/tvtypes_chips_scroll" />
|
2022-08-07 23:03:54 +00:00
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2022-08-21 20:13:53 +00:00
|
|
|
android:clipToPadding="false"
|
2022-08-13 21:49:16 +00:00
|
|
|
android:id="@+id/plugin_recycler_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
|
|
|
tools:listitem="@layout/repository_item" />
|
2022-08-07 23:03:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
|
|
|
|