2019-09-02 14:51:53 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?><!--
|
2019-08-05 17:44:05 +00:00
|
|
|
~ Copyright (c) 2019 Hemanth Savarala.
|
|
|
|
~
|
|
|
|
~ Licensed under the GNU General Public License v3
|
|
|
|
~
|
|
|
|
~ This is free software: you can redistribute it and/or modify it under
|
|
|
|
~ the terms of the GNU General Public License as published by
|
|
|
|
~ the Free Software Foundation either version 3 of the License, or (at your option) any later version.
|
|
|
|
~
|
|
|
|
~ This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
~ without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
~ See the GNU General Public License for more details.
|
|
|
|
-->
|
|
|
|
|
2019-06-03 16:23:37 +00:00
|
|
|
<LinearLayout 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:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@android:color/transparent"
|
|
|
|
android:elevation="0dp"
|
|
|
|
app:elevation="0dp">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.CollapsingToolbarLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@android:color/transparent"
|
|
|
|
app:contentScrim="@android:color/transparent"
|
|
|
|
app:layout_scrollFlags="scroll|exitUntilCollapsed"
|
|
|
|
app:statusBarScrim="@color/md_black_1000"
|
|
|
|
app:titleEnabled="false">
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/imageContainer"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="182dp"
|
|
|
|
app:layout_collapseMode="pin">
|
|
|
|
|
2019-09-09 13:38:49 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
2019-06-03 16:23:37 +00:00
|
|
|
android:id="@+id/bannerImage"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
app:layout_collapseMode="parallax"
|
|
|
|
tools:background="@color/md_red_400"
|
2019-09-09 13:38:49 +00:00
|
|
|
tools:ignore="ContentDescription"
|
|
|
|
tools:srcCompat="@tools:sample/backgrounds/scenic[9]" />
|
2019-06-03 16:23:37 +00:00
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
app:layout_collapseMode="pin"
|
|
|
|
app:layout_scrollFlags="scroll|enterAlways">
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<include layout="@layout/status_bar" />
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<com.google.android.material.card.MaterialCardView
|
2019-06-04 04:00:11 +00:00
|
|
|
android:id="@+id/toolbarContainer"
|
2019-06-03 16:23:37 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-10-10 14:02:24 +00:00
|
|
|
android:layout_marginStart="@dimen/toolbar_margin_horizontal"
|
2019-09-28 17:52:49 +00:00
|
|
|
android:layout_marginTop="@dimen/toolbar_margin_vertical"
|
2019-10-10 14:02:24 +00:00
|
|
|
android:layout_marginEnd="@dimen/toolbar_margin_horizontal"
|
2019-09-28 17:52:49 +00:00
|
|
|
android:layout_marginBottom="@dimen/toolbar_margin_vertical"
|
2019-06-03 16:23:37 +00:00
|
|
|
app:cardCornerRadius="8dp"
|
|
|
|
app:cardElevation="6dp"
|
|
|
|
app:cardUseCompatPadding="true"
|
2019-09-29 03:33:23 +00:00
|
|
|
app:layout_collapseMode="pin"
|
2019-06-03 16:23:37 +00:00
|
|
|
app:layout_scrollFlags="scroll|enterAlways">
|
|
|
|
|
2019-09-28 17:52:49 +00:00
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
2019-06-03 16:23:37 +00:00
|
|
|
android:id="@+id/toolbar"
|
2019-09-28 17:52:49 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/toolbar_height"
|
|
|
|
android:background="?colorSurface"
|
|
|
|
app:contentInsetStart="0dp"
|
|
|
|
app:contentInsetStartWithNavigation="0dp"
|
|
|
|
app:popupTheme="?toolbarPopupTheme"
|
2019-06-04 04:00:11 +00:00
|
|
|
app:title="@string/search_hint"
|
2019-06-03 16:23:37 +00:00
|
|
|
app:titleMarginStart="0dp"
|
2019-09-02 14:51:53 +00:00
|
|
|
app:titleTextAppearance="@style/ToolbarTextAppearanceSearch"
|
2019-06-03 16:23:37 +00:00
|
|
|
tools:ignore="UnusedAttribute" />
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
</LinearLayout>
|
|
|
|
</com.google.android.material.appbar.CollapsingToolbarLayout>
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
|
|
|
<androidx.core.widget.NestedScrollView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2019-10-10 14:02:24 +00:00
|
|
|
android:layout_marginStart="@dimen/toolbar_margin_horizontal"
|
|
|
|
android:layout_marginEnd="@dimen/toolbar_margin_horizontal"
|
2019-06-03 16:23:37 +00:00
|
|
|
android:elevation="@dimen/card_elevation"
|
|
|
|
app:behavior_overlapTop="72dp"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
|
|
|
|
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2019-10-11 21:01:39 +00:00
|
|
|
app:cardElevation="8dp"
|
2019-10-12 05:39:36 +00:00
|
|
|
app:cardBackgroundColor="?colorPrimary"
|
2019-10-11 21:01:39 +00:00
|
|
|
app:shapeAppearanceOverlay="@style/TopCornerCardView">
|
2019-06-03 16:23:37 +00:00
|
|
|
|
2019-06-16 18:10:28 +00:00
|
|
|
<include layout="@layout/home_content" />
|
2019-06-03 16:23:37 +00:00
|
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
</androidx.core.widget.NestedScrollView>
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
|
|
|
</LinearLayout>
|