habitica-android/Habitica/res/layout/activity_skill_members.xml

36 lines
1.3 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2019-08-24 11:21:26 +00:00
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"
2019-08-24 11:21:26 +00:00
tools:context=".ui.activities.PrefsActivity"
2021-06-04 14:11:48 +00:00
android:orientation="vertical">
2019-08-24 11:21:26 +00:00
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
2020-08-26 10:58:04 +00:00
android:theme="@style/Toolbar.Modern"
2019-08-24 11:21:26 +00:00
app:layout_scrollFlags="scroll|enterAlways"
2020-09-29 10:48:20 +00:00
app:popupTheme="@style/PopupTheme"/>
2019-08-24 11:21:26 +00:00
</com.google.android.material.appbar.AppBarLayout>
2018-11-06 15:11:02 +00:00
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbarSize="3dp"
android:scrollbarThumbVertical="@color/scrollbarThumb"
android:scrollbars="vertical" />
</LinearLayout>