58 lines
2.2 KiB
XML
58 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/shape_dialog_bg22"
|
|
android:orientation="vertical">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<EditText
|
|
android:id="@+id/edit_search"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dp_40"
|
|
android:layout_marginStart="@dimen/dp_15"
|
|
android:layout_marginTop="@dimen/dp_20"
|
|
android:layout_marginEnd="@dimen/dp_15"
|
|
android:background="@drawable/button_false_bg"
|
|
android:drawableStart="@mipmap/ic_chat_search"
|
|
android:drawablePadding="@dimen/dp_2"
|
|
android:hint="@string/dialog_selectcountry_hint"
|
|
android:imeOptions="actionSearch"
|
|
android:singleLine="true"
|
|
android:paddingStart="@dimen/dp_15"
|
|
android:textColor="@color/color_333333"
|
|
android:textColorHint="@color/color_bcbcbc" />
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_ed_clear"
|
|
android:layout_width="@dimen/dimen_12_dp"
|
|
android:layout_height="@dimen/dimen_12_dp"
|
|
android:layout_alignTop="@+id/edit_search"
|
|
android:layout_alignEnd="@+id/edit_search"
|
|
android:layout_alignBottom="@+id/edit_search"
|
|
android:layout_marginLeft="@dimen/dimen_12_dp"
|
|
android:layout_marginRight="@dimen/dimen_12_dp"
|
|
android:src="@drawable/ic_clear"
|
|
android:visibility="gone" />
|
|
</RelativeLayout>
|
|
|
|
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dp_400"
|
|
android:gravity="center_horizontal"
|
|
android:orientation="vertical">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/recycler"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
|
|
|
|
|
</LinearLayout> |