mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-27 12:05:30 +00:00
37 lines
1.2 KiB
XML
37 lines
1.2 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="item"
|
||
|
type="com.topjohnwu.magisk.model.entity.recycler.LogRvItem" />
|
||
|
|
||
|
<variable
|
||
|
name="viewModel"
|
||
|
type="com.topjohnwu.magisk.ui.log.LogViewModel" />
|
||
|
|
||
|
</data>
|
||
|
|
||
|
<FrameLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
|
||
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
dividerColor="@{@android:color/transparent}"
|
||
|
dividerSize="@{@dimen/margin_generic}"
|
||
|
itemBinding="@{viewModel.itemBinding}"
|
||
|
items="@{item.items}"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:clipToPadding="false"
|
||
|
android:orientation="vertical"
|
||
|
android:padding="@dimen/margin_generic"
|
||
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
|
||
|
tools:listitem="@layout/item_superuser_log" />
|
||
|
|
||
|
</FrameLayout>
|
||
|
|
||
|
</layout>
|