2019-04-29 19:27:51 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
|
|
|
|
android:id="@+id/pullToRefresh"
|
2019-05-26 11:35:36 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2019-04-29 19:27:51 +02:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2019-05-21 18:55:29 +02:00
|
|
|
android:background="@color/background">
|
2019-04-29 19:27:51 +02:00
|
|
|
|
|
|
|
|
<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"
|
2019-05-21 18:55:29 +02:00
|
|
|
android:textColor="@color/hintcolor"
|
2019-04-29 19:27:51 +02:00
|
|
|
android:visibility="gone"/>
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/smileydowntext"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/nosubst"
|
|
|
|
|
app:layout_anchor="@+id/smileydown"
|
|
|
|
|
android:layout_gravity="bottom|center_horizontal"
|
2019-05-21 18:55:29 +02:00
|
|
|
android:textColor="@color/hintcolor"
|
2019-04-29 19:27:51 +02:00
|
|
|
android:visibility="gone"/>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
|
android:id="@+id/linearRecycler"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2019-05-09 07:48:17 +02:00
|
|
|
android:layoutAnimation="@anim/layout_animation_fall_down"
|
|
|
|
|
android:scrollbars="vertical"/>
|
2019-04-29 19:27:51 +02:00
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|