This repository has been archived on 2026-05-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
avh-plan-android/app/src/main/res/layout/plan.xml
T

57 lines
2.1 KiB
XML
Raw Normal View History

2019-04-29 19:27:51 +02:00
<?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"
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"
android:background="@color/colorBackground"
android:animateLayoutChanges="true">
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-07-31 19:48:21 +02:00
android:textColor="@color/colorHint"
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"
2019-07-31 19:48:21 +02:00
android:text="@string/noSubstitutionsForYou"
2019-04-29 19:27:51 +02:00
app:layout_anchor="@+id/smileydown"
android:layout_gravity="bottom|center_horizontal"
2019-07-31 19:48:21 +02:00
android:textColor="@color/colorHint"
android:visibility="gone"
android:layout_marginBottom="16dp"/>
2019-04-29 19:27:51 +02:00
</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"/>
2019-04-29 19:27:51 +02:00
</LinearLayout>
2019-07-18 19:40:42 +02:00
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>