1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?xml version="1.0" encoding="utf-8"?>
-
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent" android:tag="layout/activity_start_conversation_0" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto">
- <include android:id="@+id/toolbar"
- layout="@layout/toolbar" />
- <android.support.design.widget.TabLayout
- android:id="@+id/tab_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_below="@id/toolbar"
- android:background="@color/blue500"
- android:elevation="@dimen/toolbar_elevation"
- android:minHeight="?attr/actionBarSize"
- android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
- app:tabGravity="fill"
- app:tabIndicatorColor="@color/white87"
- app:tabMode="fixed"
- app:tabSelectedTextColor="@color/white"
- app:tabTextColor="@color/white70" />
- <android.support.v4.view.ViewPager
- android:id="@+id/start_conversation_view_pager"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_below="@id/tab_layout"
- 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"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentEnd="true"
- app:backgroundTint="?colorPrimary"
- android:layout_alignParentRight="true"
- android:layout_alignParentBottom="true"
- app:sdMainFabClosedSrc="@drawable/ic_add_white_24dp"
- app:sdMainFabClosedBackgroundColor="?colorPrimary"
- app:sdMainFabOpenedBackgroundColor="?colorPrimaryDark"
- app:sdUseReverseAnimationOnClose="true"
- app:sdOverlayLayout="@id/overlay"/>
- </RelativeLayout>
-
|