2014-02-27 22:44:02 -08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
2017-11-16 12:22:09 -08:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:wheel="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
2015-10-15 14:40:45 -07:00
|
|
|
|
2019-06-05 15:47:14 -04:00
|
|
|
<androidx.appcompat.widget.Toolbar
|
2017-11-16 12:22:09 -08:00
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:minHeight="?attr/actionBarSize"
|
|
|
|
android:theme="?attr/actionBarStyle">
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<TextView android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/ShareActivity_share_with"
|
2019-10-07 15:43:36 -03:00
|
|
|
android:textColor="?attr/title_text_color_primary"
|
2017-11-16 12:22:09 -08:00
|
|
|
android:textSize="20sp"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_toStartOf="@+id/search_action"/>
|
|
|
|
|
|
|
|
<ImageView android:id="@+id/search_action"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-10-07 15:43:36 -03:00
|
|
|
wheel:srcCompat="@drawable/ic_search_24"
|
|
|
|
android:tint="?icon_tint"
|
2017-11-16 12:22:09 -08:00
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_centerVertical="true"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2019-06-05 15:47:14 -04:00
|
|
|
</androidx.appcompat.widget.Toolbar>
|
2017-11-16 12:22:09 -08:00
|
|
|
|
|
|
|
|
|
|
|
<fragment android:id="@+id/contact_selection_list_fragment"
|
|
|
|
android:layout_below="@id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:name="org.thoughtcrime.securesms.ContactSelectionListFragment" />
|
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.components.SearchToolbar
|
|
|
|
android:id="@+id/search_toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
2018-02-11 23:03:24 +01:00
|
|
|
android:elevation="4dp"
|
2017-11-16 12:22:09 -08:00
|
|
|
android:visibility="invisible"
|
|
|
|
tools:visibility="invisible"/>
|
2015-10-15 14:40:45 -07:00
|
|
|
|
|
|
|
<com.pnikosis.materialishprogress.ProgressWheel android:id="@+id/progress_wheel"
|
|
|
|
android:layout_width="70dp"
|
|
|
|
android:layout_height="70dp"
|
2017-11-16 12:22:09 -08:00
|
|
|
android:layout_centerInParent="true"
|
2015-10-15 14:40:45 -07:00
|
|
|
wheel:matProg_progressIndeterminate="true" />
|
2014-02-27 22:44:02 -08:00
|
|
|
|
2017-11-16 12:22:09 -08:00
|
|
|
</RelativeLayout>
|