26 lines
1,019 B
XML
26 lines
1,019 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout 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"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:paddingHorizontal="@dimen/pref_custom_spacing_horizontal"
|
|
android:paddingVertical="@dimen/pref_custom_spacing_vertical"
|
|
app:layout_anchorGravity="center_horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingEnd="15dp"
|
|
android:text="✕"
|
|
android:textAppearance="@android:style/TextAppearance.DeviceDefault.Widget.TextView"
|
|
tools:ignore="HardcodedText,RtlSymmetry" />
|
|
|
|
<TextView
|
|
android:id="@android:id/title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="@android:style/TextAppearance.DeviceDefault.Widget.TextView"
|
|
tools:text="Lorem" />
|
|
</LinearLayout>
|