Co-Authored-By: Greyson Parrelli <37311915+greyson-signal@users.noreply.github.com> Co-Authored-By: Rashad Sookram <95182499+rashad-signal@users.noreply.github.com>
28 lines
No EOL
1.2 KiB
XML
28 lines
No EOL
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<org.thoughtcrime.securesms.components.ContactFilterView
|
|
android:id="@+id/contact_filter_edit_text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/dsl_settings_gutter"
|
|
android:layout_marginTop="17dp"
|
|
android:layout_marginRight="@dimen/dsl_settings_gutter"
|
|
android:minHeight="44dp"
|
|
app:cfv_autoFocus="false"
|
|
app:cfv_background="@drawable/rounded_rectangle_dialog_secondary" />
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/contact_selection_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_marginTop="12dp"
|
|
android:layout_weight="1"
|
|
android:paddingBottom="44dp"
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat> |