1
0
Fork 0
mirror of https://github.com/KokaKiwi/BarInsta synced 2026-03-14 08:21:35 +00:00

Fixed Edit Keyword Filters dialog settings

This commit is contained in:
zerrium 2021-03-19 18:26:44 +07:00
parent 44358bbd31
commit 10f5d91a42
8 changed files with 37 additions and 26 deletions

View file

@ -17,21 +17,22 @@
<androidx.appcompat.widget.AppCompatEditText
android:id="@+id/edit_text"
android:layout_width="320dp"
android:layout_height="48dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginEnd="60dp"
android:hint="@string/hint_keyword" />
<ImageView
android:id="@+id/add_icon"
<Button
android:id="@+id/btnAdd"
android:layout_width="48dp"
android:layout_height="48dp"
android:background="?android:attr/selectableItemBackgroundBorderless"
android:background="@drawable/ic_add"
android:scaleType="center"
android:layout_marginStart="8dp" />
android:layout_marginStart="-50dp" />
</LinearLayout>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler"
android:id="@+id/recyclerKeyword"
android:layout_width="match_parent"
android:layout_height="wrap_content" />

View file

@ -13,11 +13,11 @@
android:layout_height="wrap_content"
android:layout_weight="1" />
<ImageView
<Button
android:id="@+id/keyword_delete"
android:layout_width="48dp"
android:layout_height="48dp"
android:background="?android:attr/selectableItemBackground"
android:background="@drawable/ic_delete"
android:scaleType="center" />
</LinearLayout>