2014-10-22 16:38:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-03-18 08:30:22 +00:00
|
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<RelativeLayout
|
2018-02-18 19:01:01 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
2018-03-18 08:30:22 +00:00
|
|
|
<include android:id="@+id/toolbar"
|
|
|
|
layout="@layout/toolbar" />
|
|
|
|
<android.support.design.widget.TabLayout
|
|
|
|
android:id="@+id/tab_layout"
|
|
|
|
android:layout_below="@id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/colorPrimary"
|
|
|
|
android:minHeight="?attr/actionBarSize"
|
2018-03-26 08:12:36 +00:00
|
|
|
android:elevation="@dimen/toolbar_elevation"
|
2018-03-18 08:30:22 +00:00
|
|
|
app:tabMode="fixed"
|
|
|
|
app:tabGravity="fill"
|
|
|
|
app:tabTextColor="@color/white70"
|
|
|
|
app:tabSelectedTextColor="@color/white"
|
2018-04-27 12:50:27 +00:00
|
|
|
app:tabIndicatorColor="@color/white87"
|
2018-03-18 08:30:22 +00:00
|
|
|
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" />
|
2018-02-18 19:01:01 +00:00
|
|
|
<android.support.v4.view.ViewPager
|
|
|
|
android:id="@+id/start_conversation_view_pager"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2018-03-18 08:30:22 +00:00
|
|
|
android:layout_below="@id/tab_layout"
|
2019-01-27 15:35:55 +00:00
|
|
|
android:background="?attr/color_background_primary">
|
|
|
|
|
|
|
|
|
|
|
|
</android.support.v4.view.ViewPager>
|
|
|
|
|
|
|
|
<com.leinardi.android.speeddial.SpeedDialOverlayLayout
|
|
|
|
android:id="@+id/overlay"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_below="@id/tab_layout"
|
|
|
|
android:background="?color_background_overlay"/>
|
|
|
|
|
|
|
|
|
|
|
|
<com.leinardi.android.speeddial.SpeedDialView
|
|
|
|
android:id="@+id/speed_dial"
|
2018-02-18 19:01:01 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-03-18 08:30:22 +00:00
|
|
|
android:layout_alignParentEnd="true"
|
2018-04-27 12:50:27 +00:00
|
|
|
app:backgroundTint="?colorPrimary"
|
2018-03-18 08:30:22 +00:00
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_alignParentBottom="true"
|
2019-02-06 13:45:51 +00:00
|
|
|
app:sdMainFabClosedSrc="@drawable/ic_add_white_24dp"
|
2019-01-27 15:35:55 +00:00
|
|
|
app:sdMainFabClosedBackgroundColor="?colorPrimary"
|
|
|
|
app:sdMainFabOpenedBackgroundColor="?colorPrimaryDark"
|
2019-02-06 13:45:51 +00:00
|
|
|
app:sdUseReverseAnimationOnClose="true"
|
2019-01-27 15:35:55 +00:00
|
|
|
app:sdOverlayLayout="@id/overlay"/>
|
2018-03-18 08:30:22 +00:00
|
|
|
</RelativeLayout>
|
2018-02-18 19:01:01 +00:00
|
|
|
</layout>
|