This commit is contained in:
zb
2023-08-28 16:26:17 +02:00
parent 84f3178783
commit d1bc4a0061
16 changed files with 209 additions and 51 deletions

View File

@@ -1,13 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<TextView
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/suggestion"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="8dp"
android:background="@drawable/suggestion_border"
android:textFontWeight="600"
android:textSize="20sp"
android:minWidth="40dp"
android:textAlignment="center"
android:textColor="@color/suggestion" />
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="2dp">
<TextView
android:id="@+id/suggestion_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/blue_radius"
android:textColor="@color/suggestion_text"
android:paddingVertical="5dp"
android:paddingHorizontal="8dp"
android:textSize="20sp"
android:textFontWeight="600" />
</LinearLayout>