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">
|
2021-01-19 11:58:05 +00:00
|
|
|
|
2018-03-18 08:30:22 +00:00
|
|
|
<RelativeLayout
|
2018-02-18 19:01:01 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
2021-01-19 11:58:05 +00:00
|
|
|
|
2024-04-04 09:38:27 +00:00
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
android:id="@+id/app_bar_layout"
|
2018-03-18 08:30:22 +00:00
|
|
|
android:layout_width="match_parent"
|
2024-04-04 09:38:27 +00:00
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:minHeight="?attr/actionBarSize" />
|
|
|
|
|
|
|
|
<com.google.android.material.tabs.TabLayout
|
|
|
|
android:id="@+id/tab_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/app_bar_layout"
|
|
|
|
app:tabGravity="fill"
|
|
|
|
app:tabMode="fixed" />
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
2021-01-19 11:58:05 +00:00
|
|
|
|
2021-01-18 17:26:46 +00:00
|
|
|
<androidx.viewpager.widget.ViewPager
|
2018-02-18 19:01:01 +00:00
|
|
|
android:id="@+id/start_conversation_view_pager"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2024-04-04 09:38:27 +00:00
|
|
|
android:layout_below="@id/app_bar_layout">
|
2019-01-27 15:35:55 +00:00
|
|
|
|
|
|
|
|
2021-01-18 17:26:46 +00:00
|
|
|
</androidx.viewpager.widget.ViewPager>
|
2019-01-27 15:35:55 +00:00
|
|
|
|
|
|
|
<com.leinardi.android.speeddial.SpeedDialOverlayLayout
|
|
|
|
android:id="@+id/overlay"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2024-04-04 09:38:27 +00:00
|
|
|
android:layout_below="@id/app_bar_layout" />
|
2019-01-27 15:35:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
<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"
|
|
|
|
android:layout_alignParentBottom="true"
|
2021-01-19 11:58:05 +00:00
|
|
|
android:contentDescription="@string/add_contact_or_create_or_join_group_chat"
|
2024-04-04 09:38:27 +00:00
|
|
|
app:sdMainFabClosedSrc="@drawable/ic_add_24dp"
|
|
|
|
app:sdMainFabClosedBackgroundColor="?colorPrimaryContainer"
|
|
|
|
app:sdMainFabClosedIconColor="?colorOnPrimaryContainer"
|
|
|
|
app:sdMainFabOpenedBackgroundColor="?colorPrimaryContainer"
|
|
|
|
app:sdMainFabOpenedIconColor="?colorOnPrimaryContainer"
|
2021-01-19 11:58:05 +00:00
|
|
|
app:sdOverlayLayout="@id/overlay"
|
|
|
|
app:sdUseReverseAnimationOnClose="true" />
|
2018-03-18 08:30:22 +00:00
|
|
|
</RelativeLayout>
|
2018-02-18 19:01:01 +00:00
|
|
|
</layout>
|