2020-01-06 17:46:08 +01:00
|
|
|
<?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"
|
2020-08-19 02:05:23 -07:00
|
|
|
type="com.topjohnwu.magisk.view.TextItem" />
|
2020-01-06 17:46:08 +01:00
|
|
|
|
|
|
|
</data>
|
|
|
|
|
2020-08-19 02:45:14 -07:00
|
|
|
<TextView
|
2020-01-06 17:46:08 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:padding="@dimen/l1"
|
|
|
|
android:text="@{item.text}"
|
|
|
|
android:textAppearance="@style/AppearanceFoundation.Tiny.Variant"
|
|
|
|
tools:text="@tools:sample/lorem/random" />
|
|
|
|
|
2020-08-19 02:05:23 -07:00
|
|
|
</layout>
|