ref: 5c62893b326e5ac5b2e652b475159bcef39f1607
app/src/main/res/layout/activity_departures.xml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 |
<?xml version="1.0" encoding="utf-8"?> <!-- SPDX-FileCopyrightText: Adam Evyčędo SPDX-License-Identifier: GPL-3.0-or-later --> <androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tool="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="16dp"> <androidx.recyclerview.widget.RecyclerView android:id="@+id/departures_recycler" android:layout_width="match_parent" android:layout_height="match_parent" android:clipToPadding="false" android:fitsSystemWindows="true" android:visibility="gone" app:layout_behavior="@string/appbar_scrolling_view_behavior" /> <com.google.android.material.card.MaterialCardView android:id="@+id/alerts" android:layout_width="match_parent" android:layout_height="100dp" app:cardBackgroundColor="?attr/colorSurface" app:layout_anchor="@id/app_bar_layout" android:visibility="gone" app:layout_anchorGravity="bottom"> <androidx.constraintlayout.widget.ConstraintLayout android:layout_width="match_parent" android:layout_height="match_parent"> <com.google.android.material.textview.MaterialTextView android:id="@+id/alerts_text" android:layout_width="0dp" android:layout_marginStart="8dp" android:layout_marginEnd="8dp" android:layout_height="0dp" android:layout_marginTop="58dp" android:ellipsize="end" android:maxLines="2" tool:text="Warning: Serious blockade on Piastowska towards Wojska Polskiego. Lines 5, 14, 163 diverted. Change for other means of transport, e.g. lines \n\naaaaa" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toStartOf="@+id/more_button" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" /> <com.google.android.material.button.MaterialButton style="@style/Widget.Material3.Button.TextButton" android:id="@+id/more_button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/more" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" /> </androidx.constraintlayout.widget.ConstraintLayout> </com.google.android.material.card.MaterialCardView> <androidx.constraintlayout.widget.ConstraintLayout android:id="@+id/departures_overlay" android:layout_width="match_parent" android:layout_height="match_parent"> <com.google.android.material.progressindicator.CircularProgressIndicator android:id="@+id/departures_progress" android:layout_width="wrap_content" android:layout_height="wrap_content" android:indeterminate="true" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" /> <ImageView android:id="@+id/error_image" android:layout_width="92dp" android:layout_height="92dp" android:visibility="gone" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" tool:ignore="ContentDescription" tool:src="@drawable/error_net" /> <com.google.android.material.textview.MaterialTextView android:id="@+id/error_text" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_marginStart="16dp" android:layout_marginTop="8dp" android:layout_marginEnd="16dp" android:textAlignment="center" android:textAppearance="@style/TextAppearance.Material3.HeadlineSmall" android:visibility="gone" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/error_image" tool:text="No connection" /> </androidx.constraintlayout.widget.ConstraintLayout> <com.google.android.material.appbar.AppBarLayout android:id="@+id/app_bar_layout" android:layout_width="match_parent" android:layout_height="wrap_content" android:fitsSystemWindows="true"> <com.google.android.material.appbar.CollapsingToolbarLayout android:id="@+id/collapsing_layout" style="?attr/collapsingToolbarLayoutMediumStyle" android:layout_width="match_parent" android:layout_height="?attr/collapsingToolbarLayoutMediumSize" app:layout_scrollFlags="scroll|exitUntilCollapsed|snap" app:maxLines="2"> <com.google.android.material.appbar.MaterialToolbar android:id="@+id/departures_app_bar" android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" android:elevation="0dp" app:menu="@menu/departures_menu" app:layout_collapseMode="pin" /> </com.google.android.material.appbar.CollapsingToolbarLayout> </com.google.android.material.appbar.AppBarLayout> </androidx.coordinatorlayout.widget.CoordinatorLayout> |