fddba2906a
Co-authored-by: Alan Evans <alan@signal.org> Co-authored-by: Alex Hart <alex@signal.org> Co-authored-by: Cody Henthorne <cody@signal.org>
30 lines
No EOL
1.2 KiB
XML
30 lines
No EOL
1.2 KiB
XML
<?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"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
<org.thoughtcrime.securesms.components.ContactFilterToolbar
|
|
android:id="@+id/payment_recipient_selection_fragment_toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
android:elevation="4dp"
|
|
android:minHeight="?attr/actionBarSize"
|
|
android:theme="?attr/actionBarStyle"
|
|
app:contentInsetStartWithNavigation="0dp"
|
|
app:navigationIcon="@drawable/ic_arrow_left_24" />
|
|
|
|
<FrameLayout
|
|
android:id="@+id/contact_selection_list_fragment_holder"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
</LinearLayout>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |