36 lines
No EOL
1.4 KiB
XML
36 lines
No EOL
1.4 KiB
XML
<?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"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<org.thoughtcrime.securesms.util.views.DarkOverflowToolbar
|
|
android:id="@+id/toolbar"
|
|
android:layout_width="match_parent"
|
|
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" />
|
|
|
|
<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" />
|
|
|
|
<FrameLayout
|
|
android:id="@+id/fragment_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1" />
|
|
|
|
</LinearLayout> |