isolaatti-android/app/src/main/res/layout/fragment_images.xml

24 lines
1.2 KiB
XML
Raw Normal View History

2023-02-11 23:41:23 -06:00
<?xml version="1.0" encoding="utf-8"?>
2023-08-06 22:11:28 -06:00
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
2023-02-11 23:41:23 -06:00
android:layout_width="match_parent"
2023-08-06 22:11:28 -06:00
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">
<com.google.android.material.appbar.AppBarLayout
2023-07-15 20:58:57 -06:00
android:layout_width="match_parent"
2023-08-06 22:11:28 -06:00
android:layout_height="wrap_content">
<com.google.android.material.appbar.MaterialToolbar
android:id="@+id/topAppBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:title="@string/images"
app:navigationIcon="@drawable/baseline_arrow_back_24"
app:navigationIconTint="@color/on_surface"
app:titleCentered="true"/>
</com.google.android.material.appbar.AppBarLayout>
2023-11-19 22:24:19 -06:00
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior" />
2023-08-06 22:11:28 -06:00
</androidx.coordinatorlayout.widget.CoordinatorLayout>