mirror of
https://github.com/Team4388/RidgeScout.git
synced 2026-06-09 00:37:59 -06:00
25 lines
971 B
XML
25 lines
971 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:orientation="vertical">
|
||
|
|
|
||
|
|
<com.google.android.material.appbar.MaterialToolbar
|
||
|
|
android:id="@+id/toolbar"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="?attr/actionBarSize"
|
||
|
|
android:background="?attr/colorPrimary"
|
||
|
|
android:elevation="4dp"
|
||
|
|
android:theme="@style/ThemeOverlay.MaterialComponents.Dark.ActionBar"
|
||
|
|
app:titleTextColor="@android:color/white" />
|
||
|
|
|
||
|
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
|
android:id="@+id/recyclerView"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="0dp"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:clipToPadding="false"
|
||
|
|
android:padding="8dp" />
|
||
|
|
|
||
|
|
</LinearLayout>
|