2016-10-17 02:05:07 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
|
|
android:id="@+id/giphy_list"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:scrollbars="vertical"/>
|
|
|
|
|
|
|
|
<ProgressBar android:id="@+id/loading_progress"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:visibility="visible"
|
|
|
|
android:indeterminate="true"/>
|
|
|
|
|
|
|
|
<TextView android:id="@+id/no_results"
|
2016-10-27 09:16:06 +00:00
|
|
|
android:text="@string/giphy_fragment__nothing_found"
|
2016-10-17 02:05:07 +00:00
|
|
|
android:gravity="center"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:layout_gravity="center"/>
|
|
|
|
|
|
|
|
</FrameLayout>
|