19 lines
670 B
XML
19 lines
670 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/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> |