2018-07-27 13:07:33 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-08-08 08:03:38 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-11-20 15:27:59 +00:00
|
|
|
android:id="@+id/main_fragment_content"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
2018-08-08 08:03:38 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2018-08-22 17:54:07 +00:00
|
|
|
<FrameLayout
|
2018-09-09 19:44:46 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:elevation="0dp"
|
|
|
|
tools:ignore="UnusedAttribute">
|
|
|
|
|
|
|
|
<include layout="@layout/status_bar" />
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
2018-08-22 17:54:07 +00:00
|
|
|
android:id="@+id/coordinator_layout"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
2018-09-09 19:44:46 +00:00
|
|
|
android:layout_height="match_parent">
|
2018-08-22 17:54:07 +00:00
|
|
|
|
2018-09-09 19:44:46 +00:00
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
2018-12-08 03:34:15 +00:00
|
|
|
android:id="@+id/appBarLayout"
|
2018-08-08 08:03:38 +00:00
|
|
|
android:layout_width="match_parent"
|
2018-09-09 19:44:46 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:elevation="0dp"
|
|
|
|
app:elevation="0dp">
|
2018-08-08 08:03:38 +00:00
|
|
|
|
2018-11-28 05:37:10 +00:00
|
|
|
<FrameLayout
|
2018-08-08 08:03:38 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-11-20 15:27:59 +00:00
|
|
|
app:layout_scrollFlags="scroll|enterAlways">
|
2018-08-08 08:03:38 +00:00
|
|
|
|
2019-05-11 13:53:20 +00:00
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
style="@style/Toolbar"
|
|
|
|
app:layout_collapseMode="pin"
|
|
|
|
tools:ignore="UnusedAttribute">
|
2018-08-22 17:54:07 +00:00
|
|
|
|
2018-12-25 14:58:47 +00:00
|
|
|
<code.name.monkey.retromusic.views.CircularImageView
|
|
|
|
android:id="@+id/userImage"
|
|
|
|
android:layout_width="32dp"
|
|
|
|
android:layout_height="32dp"
|
2019-05-11 13:53:20 +00:00
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginStart="14dp"
|
2018-12-25 14:58:47 +00:00
|
|
|
android:layout_weight="0"
|
|
|
|
app:civ_border="false" />
|
2019-03-25 12:43:43 +00:00
|
|
|
|
2019-05-11 13:53:20 +00:00
|
|
|
</androidx.appcompat.widget.Toolbar>
|
|
|
|
|
2018-08-22 17:54:07 +00:00
|
|
|
|
2018-11-20 15:27:59 +00:00
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/cab_stub"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
2018-11-28 05:37:10 +00:00
|
|
|
</FrameLayout>
|
2018-09-09 19:44:46 +00:00
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
2018-08-10 17:10:43 +00:00
|
|
|
|
2018-09-09 19:44:46 +00:00
|
|
|
<FrameLayout
|
2018-12-08 03:34:15 +00:00
|
|
|
android:id="@+id/fragmentContainer"
|
2018-09-09 19:44:46 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:background="@color/md_white_1000"
|
2019-05-11 13:53:20 +00:00
|
|
|
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior" />
|
2018-07-27 13:07:33 +00:00
|
|
|
|
2018-09-09 19:44:46 +00:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
2018-07-27 13:07:33 +00:00
|
|
|
</LinearLayout>
|