mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-26 11:35:25 +00:00
26 lines
823 B
XML
26 lines
823 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.SpinnerRvItem" />
|
||
|
|
||
|
</data>
|
||
|
|
||
|
<androidx.appcompat.widget.AppCompatTextView
|
||
|
android:id="@android:id/text1"
|
||
|
style="?android:attr/spinnerItemStyle"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:ellipsize="marquee"
|
||
|
android:gravity="center_vertical"
|
||
|
android:minHeight="?attr/listPreferredItemHeightSmall"
|
||
|
android:singleLine="true"
|
||
|
android:text="@{item.item}"
|
||
|
android:textAlignment="inherit"
|
||
|
tools:text="Forever" />
|
||
|
|
||
|
</layout>
|