You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.6 KiB
XML
73 lines
2.6 KiB
XML
<android.support.v4.widget.DrawerLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/drawer_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:fitsSystemWindows="true">
|
|
|
|
<android.support.design.widget.CoordinatorLayout
|
|
android:id="@+id/coordinatorLayout"
|
|
android:layout_height="match_parent"
|
|
android:layout_width="match_parent">
|
|
|
|
|
|
|
|
<android.support.design.widget.AppBarLayout
|
|
android:id="@+id/appbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/detail_backdrop_height"
|
|
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
|
|
|
|
<android.support.design.widget.CollapsingToolbarLayout
|
|
android:id="@+id/collapsing_toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:layout_scrollFlags="scroll|exitUntilCollapsed">
|
|
|
|
|
|
<ImageView
|
|
android:id="@+id/backdrop"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scaleType="centerCrop"
|
|
app:layout_collapseMode="parallax" />
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
android:background="?attr/colorPrimary"
|
|
app:layout_collapseMode="pin"/>
|
|
|
|
|
|
</android.support.design.widget.CollapsingToolbarLayout>
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
<!-- Your Scrollable View -->
|
|
<include layout="@layout/cardviews"/>
|
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
android:id="@+id/fab"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@drawable/ic_action_location_found"
|
|
android:layout_marginBottom="20dp"
|
|
android:layout_marginRight="20dp"
|
|
android:layout_gravity="bottom|right"
|
|
app:fabSize="normal" />
|
|
|
|
</android.support.design.widget.CoordinatorLayout>
|
|
|
|
<android.support.design.widget.NavigationView
|
|
android:id="@+id/navigation"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="start"
|
|
app:headerLayout="@layout/nav_header"
|
|
app:itemTextColor="#333"
|
|
app:itemIconTint="#333"
|
|
app:menu="@menu/navigation_drawer_items" />
|
|
</android.support.v4.widget.DrawerLayout>
|