2015-01-19 02:11:30 +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"
|
|
|
|
android:background="@color/gray95">
|
|
|
|
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
|
|
android:id="@+id/media_grid"
|
|
|
|
android:layout_width="match_parent"
|
2016-09-07 19:26:34 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:scrollbars="vertical" />
|
2015-01-19 02:11:30 +00:00
|
|
|
|
|
|
|
<TextView android:id="@+id/no_images"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="@android:color/white"
|
|
|
|
android:textStyle="italic"
|
|
|
|
android:textSize="24sp"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:paddingTop="30dp"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:text="@string/media_overview_activity__no_images" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|