-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Collapsing Toolbar added and is woring fine.
- Loading branch information
1 parent
0334018
commit fbee037
Showing
13 changed files
with
266 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
161 changes: 150 additions & 11 deletions
161
app/src/main/res/layout/activity_collaping_toolbars_layout.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,166 @@ | ||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:tools="http://schemas.android.com/tools" | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
~ Copyright (C) 2015 The Android Open Source Project | ||
~ | ||
~ Licensed under the Apache License, Version 2.0 (the "License"); | ||
~ you may not use this file except in compliance with the License. | ||
~ You may obtain a copy of the License at | ||
~ | ||
~ http://www.apache.org/licenses/LICENSE-2.0 | ||
~ | ||
~ Unless required by applicable law or agreed to in writing, software | ||
~ distributed under the License is distributed on an "AS IS" BASIS, | ||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
~ See the License for the specific language governing permissions and | ||
~ limitations under the License. | ||
--> | ||
|
||
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:app="http://schemas.android.com/apk/res-auto" | ||
android:id="@+id/parentLayout" | ||
xmlns:tools="http://schemas.android.com/tools" | ||
android:id="@+id/main_content" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
tools:context="com.hisham.design.CoordinatorLayoutActivity"> | ||
android:fitsSystemWindows="true" | ||
tools:context=".CollapsingToolbars"> | ||
|
||
<android.support.design.widget.AppBarLayout | ||
android:id="@+id/appbar" | ||
android:layout_width="match_parent" | ||
android:layout_height="192dp"> | ||
android:layout_height="256dp" | ||
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" | ||
android:fitsSystemWindows="true"> | ||
|
||
<android.support.design.widget.CollapsingToolbarLayout | ||
app:layout_scrollFlags="scroll|exitUntilCollapsed" | ||
android:id="@+id/collapsing_toolbar" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent"> | ||
|
||
android:layout_height="match_parent" | ||
app:layout_scrollFlags="scroll|exitUntilCollapsed" | ||
android:fitsSystemWindows="true" | ||
app:contentScrim="?attr/colorPrimary" | ||
app:expandedTitleMarginStart="48dp" | ||
app:expandedTitleMarginEnd="64dp"> | ||
|
||
<ImageView | ||
android:id="@+id/backdrop" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:scaleType="centerCrop" | ||
android:fitsSystemWindows="true" | ||
app:layout_collapseMode="parallax" /> | ||
|
||
<android.support.v7.widget.Toolbar | ||
app:layout_collapseMode="pin" | ||
android:id="@+id/toolbar" | ||
android:layout_width="match_parent" | ||
android:layout_height="?attr/actionBarSize" /> | ||
android:layout_height="?attr/actionBarSize" | ||
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" | ||
app:layout_collapseMode="pin" /> | ||
|
||
</android.support.design.widget.CollapsingToolbarLayout> | ||
|
||
</android.support.design.widget.AppBarLayout> | ||
</RelativeLayout> | ||
|
||
<android.support.v4.widget.NestedScrollView | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
app:layout_behavior="@string/appbar_scrolling_view_behavior"> | ||
|
||
<LinearLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:orientation="vertical" | ||
android:paddingTop="24dp"> | ||
|
||
<android.support.v7.widget.CardView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_margin="16dp"> | ||
|
||
<LinearLayout | ||
style="@style/Widget.CardContent" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content"> | ||
|
||
<TextView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:text="Info" | ||
android:textAppearance="@style/TextAppearance.AppCompat.Title" /> | ||
|
||
<TextView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:text="@string/cheese_ipsum" /> | ||
|
||
</LinearLayout> | ||
|
||
</android.support.v7.widget.CardView> | ||
|
||
<android.support.v7.widget.CardView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_marginBottom="@dimen/card_margin" | ||
android:layout_marginLeft="@dimen/card_margin" | ||
android:layout_marginRight="@dimen/card_margin"> | ||
|
||
<LinearLayout | ||
style="@style/Widget.CardContent" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content"> | ||
|
||
<TextView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:text="Friends" | ||
android:textAppearance="@style/TextAppearance.AppCompat.Title" /> | ||
|
||
<TextView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:text="@string/cheese_ipsum" /> | ||
|
||
</LinearLayout> | ||
|
||
</android.support.v7.widget.CardView> | ||
|
||
<android.support.v7.widget.CardView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_marginBottom="@dimen/card_margin" | ||
android:layout_marginLeft="@dimen/card_margin" | ||
android:layout_marginRight="@dimen/card_margin"> | ||
|
||
<LinearLayout | ||
style="@style/Widget.CardContent" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content"> | ||
|
||
<TextView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:text="Related" | ||
android:textAppearance="@style/TextAppearance.AppCompat.Title" /> | ||
|
||
<TextView | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:text="@string/cheese_ipsum" /> | ||
|
||
</LinearLayout> | ||
|
||
</android.support.v7.widget.CardView> | ||
|
||
</LinearLayout> | ||
|
||
</android.support.v4.widget.NestedScrollView> | ||
|
||
<android.support.design.widget.FloatingActionButton | ||
android:layout_height="wrap_content" | ||
android:layout_width="wrap_content" | ||
app:layout_anchor="@id/appbar" | ||
app:layout_anchorGravity="bottom|right|end" | ||
android:src="@drawable/ic_discuss" | ||
android:layout_margin="16dp" | ||
android:clickable="true"/> | ||
|
||
</android.support.design.widget.CoordinatorLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<style name="AppTheme" parent="android:Theme.Material.Light"> | ||
<style name="AppTheme" parent="Theme.AppCompat.Light"> | ||
<item name="colorPrimary">#673AB7</item> | ||
<item name="colorPrimaryDark">#512DA8</item> | ||
<item name="colorAccent">#FF4081</item> | ||
<item name="android:windowBackground">@color/windowBG</item> | ||
</style> | ||
|
||
<style name="NoActionBarTheme" parent="Theme.AppCompat.Light.NoActionBar"> | ||
<item name="windowActionBar">false</item> | ||
</style> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<color name="windowBG">#FFF5F5F5</color> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,23 @@ | ||
<resources> | ||
|
||
<!-- Base application theme. --> | ||
<style name="AppTheme" parent="android:Theme.Holo.Light.DarkActionBar"> | ||
<!-- Customize your theme here. --> | ||
<style name="AppTheme" parent="Theme.AppCompat.Light"> | ||
<item name="colorPrimary">#673AB7</item> | ||
<item name="colorPrimaryDark">#512DA8</item> | ||
<item name="colorAccent">#FF4081</item> | ||
<item name="android:windowBackground">@color/windowBG</item> | ||
</style> | ||
|
||
<style name="Widget.CardContent" parent="android:Widget"> | ||
<item name="android:paddingLeft">16dp</item> | ||
<item name="android:paddingRight">16dp</item> | ||
<item name="android:paddingTop">24dp</item> | ||
<item name="android:paddingBottom">24dp</item> | ||
<item name="android:orientation">vertical</item> | ||
</style> | ||
|
||
<style name="NoActionBarTheme" parent="Theme.AppCompat.Light.NoActionBar"> | ||
<item name="windowActionBar">false</item> | ||
</style> | ||
|
||
</resources> |