2021-03-19 09:19:27 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingBottom="8dp"
|
|
|
|
android:paddingTop="8dp">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
android:id="@+id/keyword_text"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1" />
|
|
|
|
|
2021-03-19 11:26:44 +00:00
|
|
|
<Button
|
2021-03-19 09:19:27 +00:00
|
|
|
android:id="@+id/keyword_delete"
|
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="48dp"
|
2021-03-19 11:26:44 +00:00
|
|
|
android:background="@drawable/ic_delete"
|
2021-03-19 09:19:27 +00:00
|
|
|
android:scaleType="center" />
|
|
|
|
|
|
|
|
</LinearLayout>
|