2018-11-20 17:59:23 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-08-21 05:06:39 +00:00
|
|
|
android:orientation="vertical">
|
2018-11-20 17:59:23 +00:00
|
|
|
|
2020-08-19 00:06:26 +00:00
|
|
|
<androidx.appcompat.widget.Toolbar
|
2018-11-20 17:59:23 +00:00
|
|
|
android:id="@+id/mediapicker_toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:minHeight="?attr/actionBarSize"
|
2020-01-14 05:05:31 +00:00
|
|
|
android:background="@color/action_bar_background"
|
2018-11-20 17:59:23 +00:00
|
|
|
android:theme="?attr/actionBarStyle" />
|
|
|
|
|
2020-08-19 00:06:26 +00:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2018-11-20 17:59:23 +00:00
|
|
|
android:id="@+id/mediapicker_folder_list"
|
2020-08-21 05:06:39 +00:00
|
|
|
android:background="?android:windowBackground"
|
2018-11-20 17:59:23 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2019-03-20 22:52:14 +00:00
|
|
|
android:layout_marginStart="2dp"
|
2018-11-20 17:59:23 +00:00
|
|
|
android:layout_marginTop="2dp" />
|
|
|
|
|
|
|
|
</LinearLayout>
|