32 lines
No EOL
1.4 KiB
XML
32 lines
No EOL
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
tools:viewBindingIgnore="true"
|
|
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_surface_variant" />
|
|
|
|
<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:clipChildren="false"
|
|
android:clipToPadding="false"
|
|
android:paddingBottom="44dp"
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat> |