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"
|
2018-02-18 19:01:01 +00:00
|
|
|
android:background="?attr/color_background_primary"/>
|
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
|
|
android:id="@+id/fab"
|
|
|
|
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"
|
2018-02-18 19:01:01 +00:00
|
|
|
android:src="?attr/icon_add_person"
|
|
|
|
android:layout_margin="16dp" />
|
2018-03-18 08:30:22 +00:00
|
|
|
</RelativeLayout>
|
2018-02-18 19:01:01 +00:00
|
|
|
</layout>
|