2014-02-28 06:44:02 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
2017-11-16 20:22:09 +00: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"
|
2020-08-21 05:06:39 +00:00
|
|
|
android:layout_height="match_parent">
|
2015-10-15 21:40:45 +00:00
|
|
|
|
2020-08-19 00:06:26 +00:00
|
|
|
<androidx.appcompat.widget.Toolbar
|
2017-11-16 20:22:09 +00:00
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:minHeight="?attr/actionBarSize"
|
2020-08-25 10:34:30 +00:00
|
|
|
android:background="?colorPrimary"
|
2020-01-15 05:13:28 +00:00
|
|
|
android:elevation="0dp"
|
2020-08-25 13:52:42 +00:00
|
|
|
android:theme="@style/Widget.Session.ActionBar">
|
2017-11-16 20:22:09 +00:00
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<TextView android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-01-15 05:13:28 +00:00
|
|
|
android:text="Share"
|
|
|
|
android:fontFamily="sans-serif-medium"
|
|
|
|
android:textSize="@dimen/very_large_font_size"
|
2017-11-16 20:22:09 +00:00
|
|
|
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"
|
2020-08-25 10:34:30 +00:00
|
|
|
android:src="@drawable/ic_baseline_search_24"
|
2020-01-15 05:13:28 +00:00
|
|
|
android:visibility="gone"
|
2017-11-16 20:22:09 +00:00
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_centerVertical="true"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2020-08-19 00:06:26 +00:00
|
|
|
</androidx.appcompat.widget.Toolbar>
|
2017-11-16 20:22:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
<fragment android:id="@+id/contact_selection_list_fragment"
|
|
|
|
android:layout_below="@id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-05-11 06:19:26 +00:00
|
|
|
android:name="org.thoughtcrime.securesms.loki.fragments.ContactSelectionListFragment" />
|
2017-11-16 20:22:09 +00:00
|
|
|
|
|
|
|
<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 22:03:24 +00:00
|
|
|
android:elevation="4dp"
|
2017-11-16 20:22:09 +00:00
|
|
|
android:visibility="invisible"
|
|
|
|
tools:visibility="invisible"/>
|
2015-10-15 21:40:45 +00:00
|
|
|
|
|
|
|
<com.pnikosis.materialishprogress.ProgressWheel android:id="@+id/progress_wheel"
|
|
|
|
android:layout_width="70dp"
|
|
|
|
android:layout_height="70dp"
|
2017-11-16 20:22:09 +00:00
|
|
|
android:layout_centerInParent="true"
|
2015-10-15 21:40:45 +00:00
|
|
|
wheel:matProg_progressIndeterminate="true" />
|
2014-02-28 06:44:02 +00:00
|
|
|
|
2017-11-16 20:22:09 +00:00
|
|
|
</RelativeLayout>
|