<?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="match_parent"
|
android:background="@drawable/oval_color_white_36"
|
android:orientation="vertical">
|
|
<EditText
|
android:id="@+id/et_search"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_margin="10dp"
|
android:drawableLeft="@android:drawable/ic_menu_search"
|
android:hint="@string/search"
|
android:textSize="32sp"
|
android:textColor="#888"
|
android:imeOptions="actionSearch"
|
android:maxLines="1"/>
|
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/rv_country"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_marginBottom="10dp"
|
android:layout_marginLeft="10dp"
|
android:layout_marginRight="10dp"
|
/>
|
|
</LinearLayout>
|