2019-10-17 16:57:00 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-11-20 21:42:44 +00:00
|
|
|
<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">
|
2019-10-17 16:57:00 +00:00
|
|
|
|
|
|
|
<data>
|
|
|
|
|
|
|
|
<variable
|
|
|
|
name="viewModel"
|
|
|
|
type="com.topjohnwu.magisk.redesign.log.LogViewModel" />
|
|
|
|
|
|
|
|
</data>
|
|
|
|
|
2019-11-21 16:31:37 +00:00
|
|
|
<FrameLayout
|
2019-10-17 16:57:00 +00:00
|
|
|
android:layout_width="match_parent"
|
2019-11-21 16:31:37 +00:00
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
itemBinding="@{viewModel.itemBinding}"
|
|
|
|
items="@{viewModel.items}"
|
|
|
|
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}"
|
|
|
|
android:paddingEnd="@dimen/l1"
|
|
|
|
android:paddingBottom="@{viewModel.insets.bottom}"
|
|
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
|
|
|
|
tools:listitem="@layout/item_log_access_md2"
|
|
|
|
tools:paddingTop="24dp" />
|
|
|
|
|
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
|
|
android:id="@+id/log_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_folder_list"
|
|
|
|
app:tint="?colorPrimary"
|
|
|
|
tools:layout_marginBottom="64dp" />
|
|
|
|
|
|
|
|
<com.google.android.material.circularreveal.cardview.CircularRevealCardView
|
|
|
|
android:id="@+id/log_filter"
|
2019-11-22 18:29:53 +00:00
|
|
|
style="@style/WidgetFoundation.Card.Variant"
|
2019-11-21 16:31:37 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="bottom"
|
|
|
|
android:visibility="invisible"
|
|
|
|
app:cardCornerRadius="0dp">
|
|
|
|
|
|
|
|
<include
|
|
|
|
android:id="@+id/log_filter_include"
|
|
|
|
layout="@layout/include_log_magisk"
|
|
|
|
viewModel="@{viewModel}"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
|
|
|
</com.google.android.material.circularreveal.cardview.CircularRevealCardView>
|
|
|
|
|
|
|
|
</FrameLayout>
|
2019-10-17 16:57:00 +00:00
|
|
|
|
|
|
|
</layout>
|