2025-02-16 23:31:27 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2025-02-17 15:46:00 -07:00
|
|
|
<RelativeLayout
|
2025-02-16 23:31:27 -07:00
|
|
|
android:layout_width="match_parent"
|
2025-02-17 15:46:00 -07:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
2025-02-16 23:31:27 -07:00
|
|
|
|
2025-02-17 15:46:00 -07:00
|
|
|
<LinearLayout
|
2025-02-16 23:31:27 -07:00
|
|
|
android:layout_width="match_parent"
|
2025-02-17 15:46:00 -07:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_margin="3dp"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:background="@drawable/border"
|
|
|
|
|
tools:ignore="UselessParent">
|
2025-02-16 23:31:27 -07:00
|
|
|
|
2025-02-17 15:46:00 -07:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/item"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_margin="10dp"
|
|
|
|
|
android:textSize="24sp"
|
|
|
|
|
android:overlapAnchor="false"/>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
2025-02-16 23:31:27 -07:00
|
|
|
|
2025-02-17 15:46:00 -07:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/title"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginStart="9dp"
|
|
|
|
|
android:layout_marginTop="-5dp"
|
|
|
|
|
android:paddingLeft="3dp"
|
|
|
|
|
android:paddingRight="3dp"
|
|
|
|
|
android:text="Test"
|
|
|
|
|
android:textAppearance="@style/TextAppearance.MaterialComponents.Subtitle1"/>
|
|
|
|
|
</RelativeLayout>
|