<?xml version="1.0" encoding="utf-8"?>
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@color/white">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:drawableStart="@mipmap/clear"
|
android:drawablePadding="5dp"
|
android:gravity="center"
|
android:paddingTop="12dp"
|
android:paddingBottom="12dp"
|
android:text="清空历史记录"
|
android:textColor="@color/textColor99"
|
android:textSize="12sp"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintStart_toStartOf="parent" />
|
</androidx.constraintlayout.widget.ConstraintLayout>
|