mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
0bfea03707
* search for contacts, share to new contacts, share to archives * hide option menu while sharing/forwarding * use action bar back icon to cancel sharing/forwarding
43 lines
2.0 KiB
XML
43 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:wheel="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
android:minHeight="?attr/actionBarSize"
|
|
android:background="?attr/colorPrimary"
|
|
android:elevation="4dp"
|
|
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/chat_share_with_title"
|
|
android:id="@+id/title"
|
|
android:textColor="@color/white"
|
|
android:textSize="20sp"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_centerVertical="true" />
|
|
|
|
</RelativeLayout>
|
|
</android.support.v7.widget.Toolbar>
|
|
|
|
<com.pnikosis.materialishprogress.ProgressWheel android:id="@+id/progress_wheel"
|
|
android:layout_width="70dp"
|
|
android:layout_height="70dp"
|
|
android:layout_centerInParent="true"
|
|
wheel:matProg_progressIndeterminate="true"
|
|
android:visibility="visible" />
|
|
</RelativeLayout>
|