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"
|
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
|
|
|
|
android:id="@+id/appbar_rules_activity"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
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"
|
|
|
|
android:background="?attr/colorPrimary"
|
|
|
|
app:popupTheme="@style/AppTheme.PopupOverlay" />
|
|
|
|
|
|
|
|
</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"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
2019-07-18 06:00:46 +02:00
|
|
|
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|