Archived
56 lines
2.1 KiB
XML
56 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
|
android:id="@+id/pullToRefresh"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:background="@color/colorBackground">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:id="@+id/linearsmiley"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layoutAnimation="@anim/layout_animation_fall_down">
|
|
|
|
<TextView
|
|
android:id="@+id/smileydown"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text=":("
|
|
android:textSize="60dp"
|
|
android:layout_gravity="center"
|
|
android:textColor="@color/colorHint"
|
|
android:visibility="gone"/>
|
|
|
|
<TextView
|
|
android:id="@+id/smileydowntext"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/noSubstitutionsForYou"
|
|
app:layout_anchor="@+id/smileydown"
|
|
android:layout_gravity="bottom|center_horizontal"
|
|
android:textColor="@color/colorHint"
|
|
android:visibility="gone"
|
|
android:layout_marginBottom="16dp"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/linearRecycler"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layoutAnimation="@anim/layout_animation_fall_down"
|
|
android:scrollbars="vertical"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
|
|