Untitled
unknown
plain_text
2 years ago
1.1 kB
4
Indexable
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:background="@color/white" tools:context=".ChatActivity"> <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="Search" android:layout_margin="5dp" android:id="@+id/search_userch" android:background="@drawable/search_back" android:padding="10dp" android:drawableLeft="@drawable/ic_grey_search_24" android:paddingLeft="20dp" android:textColor="@color/black" android:drawablePadding="10dp"/> <androidx.recyclerview.widget.RecyclerView android:layout_width="match_parent" android:layout_height="match_parent" android:layout_margin="5dp" android:id="@+id/rv_ch" /> </LinearLayout>
Editor is loading...