2020-11-09 10:26:21 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2022-08-09 13:29:04 -03:00
|
|
|
tools:viewBindingIgnore="true"
|
2021-07-12 15:44:59 -03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-11-09 10:26:21 -04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2021-07-12 15:44:59 -03:00
|
|
|
<org.thoughtcrime.securesms.util.views.DarkOverflowToolbar
|
|
|
|
android:id="@+id/toolbar"
|
2020-11-09 10:26:21 -04:00
|
|
|
android:layout_width="match_parent"
|
2021-07-12 15:44:59 -03:00
|
|
|
android:layout_height="56dp"
|
|
|
|
android:theme="?attr/settingsToolbarStyle"
|
|
|
|
app:navigationIcon="@drawable/ic_arrow_left_24"
|
|
|
|
app:titleTextAppearance="@style/Signal.Text.Title"
|
|
|
|
app:title="@string/BlockedUsersActivity__blocked_users" />
|
2020-11-09 10:26:21 -04:00
|
|
|
|
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"
|
|
|
|
android:layout_marginBottom="12dp"
|
|
|
|
android:minHeight="44dp"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible" />
|
2020-11-09 10:26:21 -04:00
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/fragment_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1" />
|
|
|
|
|
|
|
|
</LinearLayout>
|