2019-07-18 06:00:46 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-03-15 06:12:02 +01:00
|
|
|
android:id="@+id/coordinator_layout_rules_activity"
|
2019-10-03 14:31:55 +02:00
|
|
|
android:background="?attr/backgroundColor"
|
2019-08-07 17:28:02 +02:00
|
|
|
tools:application=".RulesActivity">
|
2019-07-18 06:00:46 +02:00
|
|
|
|
2019-08-12 03:26:27 +02:00
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
2019-08-22 08:44:10 +02:00
|
|
|
android:id="@+id/appbar_layout_rules_activity"
|
2019-08-12 03:26:27 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-10-03 14:31:55 +02:00
|
|
|
android:background="?attr/toolbarAndTabBackgroundColor"
|
2019-08-12 03:26:27 +02:00
|
|
|
android:theme="@style/AppTheme.AppBarOverlay">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.CollapsingToolbarLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:layout_scrollFlags="scroll|enterAlways"
|
|
|
|
app:titleEnabled="false"
|
|
|
|
app:toolbarId="@+id/toolbar_rules_activity">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar_rules_activity"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
2020-03-27 11:08:58 +01:00
|
|
|
app:popupTheme="@style/AppTheme.PopupOverlay"
|
|
|
|
app:navigationIcon="?attr/homeAsUpIndicator" />
|
2019-08-12 03:26:27 +02:00
|
|
|
|
|
|
|
</com.google.android.material.appbar.CollapsingToolbarLayout>
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
2019-07-18 06:00:46 +02:00
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progress_bar_rules_activity"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-08-12 03:26:27 +02:00
|
|
|
android:layout_gravity="center"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
2019-07-18 06:00:46 +02:00
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/recycler_view_rules_activity"
|
|
|
|
android:layout_width="match_parent"
|
2019-08-12 03:26:27 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:clipToPadding="false"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
2019-07-18 06:00:46 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/error_text_view_rules_activity"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="center"
|
2019-08-12 03:26:27 +02:00
|
|
|
android:visibility="gone"
|
2019-09-20 15:27:00 +02:00
|
|
|
android:textSize="?attr/font_default"
|
2019-08-12 03:26:27 +02:00
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
2019-07-18 06:00:46 +02:00
|
|
|
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|