You've already forked Magisk
mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-09-06 06:36:58 +00:00
58 lines
2.0 KiB
XML
58 lines
2.0 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>
|
|
|
|
<variable
|
|
name="viewModel"
|
|
type="com.topjohnwu.magisk.ui.deny.DenyListViewModel" />
|
|
|
|
</data>
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/app_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:clipToPadding="false"
|
|
android:orientation="vertical"
|
|
android:paddingTop="@dimen/internal_action_bar_size"
|
|
app:fitsSystemWindowsInsets="top|bottom"
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
|
|
app:invisible="@{viewModel.loading}"
|
|
app:items="@{viewModel.items}"
|
|
app:extraBindings="@{viewModel.extraBindings}"
|
|
tools:listitem="@layout/item_hide_md2"
|
|
tools:paddingTop="40dp" />
|
|
|
|
<LinearLayout
|
|
goneUnless="@{viewModel.loading}"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
tools:visibility="gone">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/loading"
|
|
android:textAppearance="@style/AppearanceFoundation.Title"
|
|
android:textStyle="bold" />
|
|
|
|
<ProgressBar
|
|
style="@style/WidgetFoundation.ProgressBar.Indeterminate"
|
|
android:layout_marginTop="@dimen/l1" />
|
|
|
|
</LinearLayout>
|
|
|
|
</FrameLayout>
|
|
|
|
</layout>
|