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"
|
2025-07-25 12:51:01 -06:00
|
|
|
android:layout_marginLeft="3dp"
|
|
|
|
|
android:layout_marginTop="5dp"
|
|
|
|
|
android:layout_marginRight="3dp"
|
|
|
|
|
android:layout_marginBottom="3dp"
|
2025-02-17 15:46:00 -07:00
|
|
|
android:background="@drawable/border"
|
2025-07-25 12:51:01 -06:00
|
|
|
android:orientation="horizontal"
|
2025-02-17 15:46:00 -07:00
|
|
|
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"
|
2025-07-25 12:51:01 -06:00
|
|
|
android:overlapAnchor="false"
|
|
|
|
|
android:text="▼ Options"
|
|
|
|
|
android:textSize="24sp" />
|
2025-02-17 15:46:00 -07:00
|
|
|
|
|
|
|
|
</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"
|
2025-07-25 12:51:01 -06:00
|
|
|
android:layout_marginTop="-6dp"
|
2025-02-17 15:46:00 -07:00
|
|
|
android:paddingLeft="3dp"
|
|
|
|
|
android:paddingRight="3dp"
|
|
|
|
|
android:text="Test"
|
2025-07-25 12:51:01 -06:00
|
|
|
android:textAppearance="@style/TextAppearance.MaterialComponents.Subtitle1" />
|
2025-02-17 15:46:00 -07:00
|
|
|
</RelativeLayout>
|