mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-12-01 22:15:40 +00:00
9952387356
The switch is not actually a switch, but a representation of internal state, the layouts continue to accept touch events as beforehand.
97 lines
3.9 KiB
XML
97 lines
3.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout 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">
|
|
|
|
<data>
|
|
|
|
<import type="com.topjohnwu.magisk.core.Config" />
|
|
|
|
<variable
|
|
name="viewModel"
|
|
type="com.topjohnwu.magisk.ui.module.ModuleViewModel" />
|
|
|
|
</data>
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/module_list"
|
|
adapter="@{viewModel.adapter}"
|
|
dividerHorizontal="@{@drawable/divider_l1}"
|
|
dividerVertical="@{@drawable/divider_l1}"
|
|
gone="@{viewModel.loading && viewModel.items.empty}"
|
|
itemBinding="@{viewModel.itemBinding}"
|
|
items="@{viewModel.items}"
|
|
spanCount="@{Config.listSpanCount}"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:clipToPadding="false"
|
|
android:orientation="vertical"
|
|
android:paddingStart="@dimen/l1"
|
|
android:paddingTop="@{viewModel.insets.top + (int) @dimen/internal_action_bar_size + (int) @dimen/l1}"
|
|
android:paddingEnd="0dp"
|
|
android:paddingBottom="@{viewModel.insets.bottom + (int) @dimen/internal_action_bar_size + (int) @dimen/l1}"
|
|
app:layoutManager="androidx.recyclerview.widget.StaggeredGridLayoutManager"
|
|
app:spanCount="2"
|
|
tools:listitem="@layout/item_module_md2" />
|
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
android:id="@+id/module_filter_toggle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom|end"
|
|
android:layout_marginStart="@dimen/l1"
|
|
android:layout_marginEnd="@dimen/l1"
|
|
android:layout_marginBottom="@{viewModel.insets.bottom + (int) @dimen/l1}"
|
|
app:backgroundTint="?colorSurfaceSurfaceVariant"
|
|
app:srcCompat="@drawable/ic_filter"
|
|
app:tint="?colorPrimary"
|
|
tools:layout_marginBottom="64dp" />
|
|
|
|
<com.google.android.material.circularreveal.cardview.CircularRevealCardView
|
|
android:id="@+id/module_filter"
|
|
style="@style/WidgetFoundation.Card.Variant"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="bottom"
|
|
android:visibility="invisible"
|
|
app:cardCornerRadius="0dp">
|
|
|
|
<include
|
|
android:id="@+id/module_filter_include"
|
|
layout="@layout/include_module_filter"
|
|
viewModel="@{viewModel}"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
</com.google.android.material.circularreveal.cardview.CircularRevealCardView>
|
|
|
|
<LinearLayout
|
|
goneUnless="@{viewModel.loading && viewModel.items.empty}"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/safetynet_attest_loading"
|
|
android:textAppearance="@style/AppearanceFoundation.Title"
|
|
android:textStyle="bold" />
|
|
|
|
<ProgressBar
|
|
style="@style/WidgetFoundation.ProgressBar.Indeterminate"
|
|
android:layout_marginTop="@dimen/l1" />
|
|
|
|
</LinearLayout>
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
</layout>
|