38 lines
1.2 KiB
XML
38 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:clipToPadding="false"
|
|
android:paddingLeft="16dp"
|
|
android:paddingRight="16dp"
|
|
android:paddingTop="16dp"
|
|
android:baselineAligned="false">
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="0dp"
|
|
android:layout_height="24dp"
|
|
android:layout_weight="1"
|
|
android:gravity="center_vertical|start"
|
|
android:textAlignment="viewStart"
|
|
android:textAppearance="@style/m3_title_medium"
|
|
android:textColor="?colorM3OnSurface"
|
|
android:singleLine="true"
|
|
android:ellipsize="end"
|
|
tools:text="Section Header"/>
|
|
|
|
<Button
|
|
android:id="@+id/action_btn"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="24dp"
|
|
android:layout_marginEnd="-8dp"
|
|
android:textAppearance="@style/m3_label_large"
|
|
android:textColor="?colorM3Primary"
|
|
android:background="@drawable/bg_button_borderless_rounded"
|
|
android:paddingLeft="8dp"
|
|
android:paddingRight="8dp"
|
|
tools:text="Action"/>
|
|
|
|
</LinearLayout> |