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

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>