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

60 lines
2.3 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="0dp"
android:layout_height="0dp"
android:layout_marginStart="0dp"
android:layout_marginTop="0dp"
android:layout_marginEnd="0dp"
android:layout_marginBottom="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="?attr/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="?attr/colorHint"
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"
android:textColor="?attr/colorHint"
android:visibility="gone"/>
</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"/>
</LinearLayout>
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>