2020-05-13 13:41:36 -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"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2021-07-12 15:44:59 -03:00
|
|
|
<org.thoughtcrime.securesms.util.views.DarkOverflowToolbar
|
2020-05-13 13:41:36 -03:00
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
2022-05-26 17:32:52 -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"
|
2020-05-13 13:41:36 -03:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2021-07-12 15:44:59 -03:00
|
|
|
app:navigationIcon="@drawable/ic_arrow_left_24"
|
2022-05-26 17:32:52 -03:00
|
|
|
app:title="@string/CreateGroupActivity__select_members"
|
|
|
|
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"
|
2022-05-26 17:32:52 -03:00
|
|
|
android:layout_marginLeft="16dp"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:layout_marginRight="16dp"
|
|
|
|
android:minHeight="44sp"
|
2021-07-12 15:44:59 -03:00
|
|
|
app:layout_constraintTop_toBottomOf="@id/toolbar" />
|
2020-05-13 13:41:36 -03:00
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/contact_selection_list_fragment"
|
|
|
|
android:name="org.thoughtcrime.securesms.ContactSelectionListFragment"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
2022-05-26 17:32:52 -03:00
|
|
|
android:layout_marginTop="10dp"
|
2020-05-13 13:41:36 -03:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2021-07-12 15:44:59 -03:00
|
|
|
app:layout_constraintTop_toBottomOf="@id/contact_filter_edit_text" />
|
2020-05-13 13:41:36 -03:00
|
|
|
|
2022-05-26 17:32:52 -03:00
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/skip"
|
|
|
|
style="@style/Signal.Widget.Button.Large.Tonal"
|
2021-01-08 20:50:30 -04:00
|
|
|
android:layout_width="wrap_content"
|
2022-05-26 17:32:52 -03:00
|
|
|
android:layout_height="wrap_content"
|
2020-05-13 13:41:36 -03:00
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:layout_marginBottom="16dp"
|
2021-01-08 20:50:30 -04:00
|
|
|
android:minWidth="0dp"
|
|
|
|
android:text="@string/CreateGroupActivity__skip"
|
2022-05-26 17:32:52 -03:00
|
|
|
app:elevation="0dp"
|
2020-05-13 13:41:36 -03:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2021-01-08 20:50:30 -04:00
|
|
|
app:layout_constraintEnd_toEndOf="parent" />
|
2020-05-13 13:41:36 -03:00
|
|
|
|
2022-05-26 17:32:52 -03:00
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
|
|
android:id="@+id/next"
|
|
|
|
style="@style/Signal.Widget.Button.Large.Tonal.Icon"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:layout_marginBottom="16dp"
|
|
|
|
android:contentDescription="@string/AccountLockedFragment__next"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:srcCompat="@drawable/ic_arrow_end_24" />
|
|
|
|
|
2020-05-13 13:41:36 -03:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|