mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-26 19:45:26 +00:00
27 lines
694 B
XML
27 lines
694 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools">
|
||
|
|
||
|
<data>
|
||
|
|
||
|
<variable
|
||
|
name="item"
|
||
|
type="com.topjohnwu.magisk.model.entity.recycler.ConsoleRvItem" />
|
||
|
|
||
|
<!--no actions are required-->
|
||
|
<variable
|
||
|
name="viewModel"
|
||
|
type="Object" />
|
||
|
|
||
|
</data>
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:fontFamily="monospace"
|
||
|
android:text="@{item.item}"
|
||
|
android:textSize="10sp"
|
||
|
tools:text="@tools:sample/lorem/random" />
|
||
|
|
||
|
</layout>
|