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

41 lines
1.7 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2021-07-12 15:44:59 -03:00
<LinearLayout 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"
2021-07-12 15:44:59 -03:00
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
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"
2022-05-26 17:32:52 -03:00
app:contentInsetStartWithNavigation="56dp"
2021-07-12 15:44:59 -03:00
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:navigationIcon="@drawable/ic_arrow_left_24"
2022-05-26 17:32:52 -03:00
app:title="@string/NewConversationActivity__new_message"
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:layout_marginBottom="10dp"
android:minHeight="44sp" />
2021-07-12 15:44:59 -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>