mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-08 15:57:29 +00:00
343b2cf9d7
Remove left over images DM update (WIP) Update DM module. (WIP) Update DM module. (WIP)
30 lines
1.2 KiB
XML
30 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout 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">
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?actionBarSize"
|
|
app:layout_constraintBottom_toTopOf="@id/media_list"
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
<Spinner
|
|
android:id="@+id/album_picker"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent" />
|
|
|
|
</androidx.appcompat.widget.Toolbar>
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/media_list"
|
|
android:layout_width="0dp"
|
|
android:layout_height="0dp"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@id/toolbar" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |