mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-14 10:47:30 +00:00
23 lines
788 B
XML
23 lines
788 B
XML
|
<?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" />
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/keyword_delete"
|
||
|
android:layout_width="48dp"
|
||
|
android:layout_height="48dp"
|
||
|
android:background="?android:attr/selectableItemBackground"
|
||
|
android:scaleType="center" />
|
||
|
|
||
|
</LinearLayout>
|