https://github.com/matrixxun/immersivedetailsample
A sample application show how to realize immersive parallax effect header like Google Play Store
https://github.com/matrixxun/immersivedetailsample
android immersive parallax parallax-scrolling play playstore scrollview toolbar
Last synced: 17 days ago
JSON representation
A sample application show how to realize immersive parallax effect header like Google Play Store
- Host: GitHub
- URL: https://github.com/matrixxun/immersivedetailsample
- Owner: matrixxun
- Created: 2017-06-13T13:19:50.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-22T02:09:18.000Z (over 7 years ago)
- Last Synced: 2025-03-30T18:09:48.981Z (24 days ago)
- Topics: android, immersive, parallax, parallax-scrolling, play, playstore, scrollview, toolbar
- Language: Java
- Homepage:
- Size: 12.7 MB
- Stars: 462
- Watchers: 10
- Forks: 46
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://android-arsenal.com/details/3/5934)
# ImmersiveDetailSample
A sample application show how to realize immersive parallax effect header like **Google Play Store**
 # Feature
1. Toolbar quick return.
2. Statusbar&toolbar changes between transparent and solid when gallery visible/invisible.
3. Gallery parallax effect.# How to use it
1. Your detail Activty's theme should be:res/values/style.xml:
``` xml<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>```
and res/values-v21/style.xml:
``` xml<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
<item name="android:statusBarColor">@android:color/transparent</item>```
2. add "LollipopCompatSingleton.translucentStatusBar()" and "LollipopCompatSingleton.getInstance().fitStatusBarTranslucentPadding()" to Activity onCreate() method:
``` java
protected void onCreate(Bundle savedInstanceState) {
LollipopCompatSingleton.translucentStatusBar(this);
super.onCreate(savedInstanceState);
setContentView(R.layout.xxxx);
......
LollipopCompatSingleton.getInstance().fitStatusBarTranslucentPadding(toolbar, this);
```
3. Add ObservableScrollView to your layout xml.
``` xml......
```
4. initialize immersive feature.
``` java
scrollview.setupImmersiveEffect(getActivity(),imageContainer,toolbar,toolbarColor,toolbarTitle);
```## Compat
API level 14+ supported## Example
See example code here on Github. You can also see it live downloading [this apk](https://raw.githubusercontent.com/matrixxun/ImmersiveDetailSample/master/art/app-debug.apk)License
--------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 athttp://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.