mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 18:45:19 +00:00
35 lines
1.2 KiB
XML
35 lines
1.2 KiB
XML
<?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"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
android:id="@+id/giphy_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scrollbars="vertical"/>
|
|
|
|
<com.github.ybq.android.spinkit.SpinKitView
|
|
style="@style/SpinKitView.Large.ThreeBounce"
|
|
android:id="@+id/loading_progress"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="8dp"
|
|
android:layout_gravity="center"
|
|
android:visibility="visible"
|
|
app:SpinKit_Color="@color/text" />
|
|
|
|
<TextView
|
|
android:id="@+id/no_results"
|
|
android:text="@string/giphy_fragment__nothing_found"
|
|
android:gravity="center"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/text"
|
|
android:textSize="@dimen/medium_font_size"
|
|
android:visibility="gone"
|
|
android:layout_gravity="center"/>
|
|
|
|
</FrameLayout> |