mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-12 17:57:29 +00:00
72e99aeff8
see the following comment on #814
23 lines
766 B
XML
23 lines
766 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" />
|
|
|
|
<Button
|
|
android:id="@+id/keyword_delete"
|
|
android:layout_width="30dp"
|
|
android:layout_height="30dp"
|
|
android:background="@drawable/ic_delete"
|
|
android:scaleType="center" />
|
|
|
|
</LinearLayout> |