41 lines
1.7 KiB
XML
41 lines
1.7 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<View
|
||
|
android:id="@+id/anchor"
|
||
|
android:layout_width="48dp"
|
||
|
android:layout_height="2dp"
|
||
|
android:layout_gravity="center_horizontal"
|
||
|
android:layout_marginTop="16dp"
|
||
|
android:background="@color/signal_icon_tint_tab_unselected" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/title"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="13dp"
|
||
|
android:gravity="center"
|
||
|
android:text="@string/MultiselectForwardFragment__forward_to"
|
||
|
android:textAppearance="@style/TextAppearance.Signal.Body1.Bold" />
|
||
|
|
||
|
<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" />
|
||
|
|
||
|
<androidx.fragment.app.FragmentContainerView
|
||
|
android:id="@+id/contact_selection_list_fragment"
|
||
|
android:name="org.thoughtcrime.securesms.ContactSelectionListFragment"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="0dp"
|
||
|
android:layout_marginTop="12dp"
|
||
|
android:layout_weight="1" />
|
||
|
|
||
|
</androidx.appcompat.widget.LinearLayoutCompat>
|