Signal-Android/app/src/main/res/layout/add_members_activity.xml

55 lines
2.4 KiB
XML
Raw Normal View History

2020-06-05 12:33:41 -03:00
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2022-08-09 13:29:04 -03:00
xmlns:tools="http://schemas.android.com/tools"
tools:viewBindingIgnore="true"
2020-06-05 12:33:41 -03:00
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
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-06-05 12:33:41 -03:00
android:id="@+id/toolbar"
android:layout_width="match_parent"
2021-07-12 15:44:59 -03:00
android:layout_height="56dp"
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"
app:titleTextAppearance="@style/Signal.Text.Title"
app:title="@string/AddMembersActivity__add_members" />
<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_marginBottom="12dp"
android:layout_marginRight="@dimen/dsl_settings_gutter"
android:minHeight="44dp" />
2020-06-05 12:33:41 -03:00
<fragment
android:id="@+id/contact_selection_list_fragment"
android:name="org.thoughtcrime.securesms.ContactSelectionListFragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
2022-05-26 17:32:52 -03:00
<org.thoughtcrime.securesms.util.views.CircularProgressMaterialButton
2020-06-05 12:33:41 -03:00
android:id="@+id/done"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_marginEnd="16dp"
android:layout_marginBottom="16dp"
2022-05-26 17:32:52 -03:00
app:circularProgressMaterialButton__label="@string/AddMembersActivity__done"
2020-06-05 12:33:41 -03:00
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
</FrameLayout>