Archived
21 lines
776 B
XML
21 lines
776 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|||
|
|
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
|
android:orientation="horizontal">
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/preference_image"
|
||
|
|
android:layout_width="20dp"
|
||
|
|
android:layout_height="20dp"
|
||
|
|
android:scaleType="centerInside"
|
||
|
|
app:tint="?attr/colorOnSurfaceVariant"
|
||
|
|
android:layout_marginEnd="8dp"/>
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/preference_text"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"/>
|
||
|
|
|
||
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|