30 lines
979 B
XML
30 lines
979 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
android:layout_width="0dp"
|
|
android:layout_height="28dp"
|
|
android:layout_weight="1"
|
|
android:layout_marginTop="12dp"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginBottom="8dp"
|
|
android:textAppearance="@style/m3_title_large"
|
|
android:singleLine="true"
|
|
android:ellipsize="end"
|
|
android:text="@string/recent_searches"/>
|
|
|
|
<ImageButton
|
|
android:id="@+id/clear"
|
|
android:layout_width="44dp"
|
|
android:layout_height="44dp"
|
|
android:layout_marginTop="4dp"
|
|
android:layout_marginEnd="6dp"
|
|
android:tint="?android:textColorSecondary"
|
|
android:background="?android:selectableItemBackgroundBorderless"
|
|
android:contentDescription="@string/clear"
|
|
android:src="@drawable/ic_fluent_dismiss_circle_24_filled"/>
|
|
|
|
</LinearLayout> |