mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 18:45:19 +00:00
dd37adee5c
Bottom sheet style unified.
23 lines
938 B
XML
23 lines
938 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout 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.recyclerview.widget.RecyclerView
|
|
android:id="@+id/media_grid"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scrollbars="vertical" />
|
|
|
|
<TextView android:id="@+id/no_images"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:textSize="@dimen/medium_font_size"
|
|
android:gravity="center"
|
|
android:textColor="@color/text"
|
|
android:visibility="gone"
|
|
android:text="@string/media_overview_activity__no_media" />
|
|
|
|
</RelativeLayout>
|