2017-09-25 15:32:45 +00:00
|
|
|
<?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"
|
2020-01-15 05:13:28 +00:00
|
|
|
android:background="@drawable/default_session_background">
|
2017-09-25 15:32:45 +00:00
|
|
|
|
2020-08-19 00:06:26 +00:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2017-09-25 15:32:45 +00:00
|
|
|
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"
|
2020-01-16 23:37:06 +00:00
|
|
|
android:textSize="@dimen/medium_font_size"
|
2017-09-25 15:32:45 +00:00
|
|
|
android:gravity="center"
|
2020-01-16 23:37:06 +00:00
|
|
|
android:textColor="@color/text"
|
2017-09-25 15:32:45 +00:00
|
|
|
android:visibility="gone"
|
|
|
|
android:text="@string/media_overview_activity__no_media" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|