2021-04-06 13:03:33 -03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2022-09-15 11:05:07 -03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2021-04-06 13:03:33 -03:00
|
|
|
android:layout_width="match_parent"
|
2022-09-15 11:05:07 -03:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:viewBindingIgnore="true">
|
2021-04-06 13:03:33 -03:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2021-07-12 15:44:59 -03:00
|
|
|
<org.thoughtcrime.securesms.util.views.DarkOverflowToolbar
|
2021-04-06 13:03:33 -03:00
|
|
|
android:id="@+id/payment_recipient_selection_fragment_toolbar"
|
|
|
|
android:layout_width="match_parent"
|
2022-09-15 11:05:07 -03:00
|
|
|
android:layout_height="@dimen/signal_m3_toolbar_height"
|
|
|
|
android:minHeight="@dimen/signal_m3_toolbar_height"
|
2021-07-12 15:44:59 -03:00
|
|
|
android:theme="?attr/settingsToolbarStyle"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:navigationIcon="@drawable/ic_arrow_left_24"
|
2022-09-15 11:05:07 -03:00
|
|
|
app:title="@string/PaymentRecipientSelectionFragment__new_payment"
|
|
|
|
app:titleTextAppearance="@style/Signal.Text.TitleLarge" />
|
2021-07-12 15:44:59 -03:00
|
|
|
|
|
|
|
<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="4dp"
|
|
|
|
android:layout_marginRight="@dimen/dsl_settings_gutter"
|
2022-09-15 11:05:07 -03:00
|
|
|
android:layout_marginBottom="12dp"
|
2021-07-12 15:44:59 -03:00
|
|
|
android:minHeight="44dp" />
|
|
|
|
|
2021-04-06 13:03:33 -03:00
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/contact_selection_list_fragment_holder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|