Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/florent37/MaterialViewPager
A Material Design ViewPager easy to use library
https://github.com/florent37/MaterialViewPager
android java kenburnsview material materialviewpager parallax scroll toolbar viewpager
Last synced: about 2 months ago
JSON representation
A Material Design ViewPager easy to use library
- Host: GitHub
- URL: https://github.com/florent37/MaterialViewPager
- Owner: florent37
- License: apache-2.0
- Archived: true
- Created: 2015-04-24T17:53:15.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-10-12T01:11:20.000Z (about 6 years ago)
- Last Synced: 2024-10-04T09:21:27.357Z (2 months ago)
- Topics: android, java, kenburnsview, material, materialviewpager, parallax, scroll, toolbar, viewpager
- Language: Java
- Homepage: https://www.fiches-plateau-moto.fr
- Size: 18.7 MB
- Stars: 8,132
- Watchers: 272
- Forks: 1,480
- Open Issues: 183
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- -awesome-android-ui - MaterialViewPager - 2.0) | <img src="/art/MaterialViewPager.png" width="49%"> <img src="/art/MaterialViewPager2.gif" width="49%"> (Index `(light-weight pages)`)
- awesome-android-ui - MaterialViewPager - 2.0) | <img src="/art/MaterialViewPager.png" width="49%"> <img src="/art/MaterialViewPager2.gif" width="49%"> (Index `(light-weight pages)`)
- awesome-github-android-ui - MaterialViewPager - 安卓选项卡插件 (ViewPager)
- awesome-android - MaterialViewPager
- awesome-android-ui - MaterialViewPager - 2.0) | <img src="/art/MaterialViewPager.png" width="49%"> <img src="/art/MaterialViewPager2.gif" width="49%"> (Index)
- awesome-android-ui - https://github.com/florent37/MaterialViewPager
- awesome-android-ui - https://github.com/florent37/MaterialViewPager
README
MaterialViewPager
=======[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-MaterialViewPager-brightgreen.svg?style=flat)](http://android-arsenal.com/details/1/1731)
[![Android Weekly](https://img.shields.io/badge/android--weekly-151-blue.svg)](http://androidweekly.net/issues/issue-151)
[![CircleCI](https://circleci.com/gh/florent37/MaterialViewPager.svg?style=svg)](https://circleci.com/gh/florent37/MaterialViewPager)Material Design ViewPager easy to use library
[![Build screen](https://raw.githubusercontent.com/florent37/MaterialViewPager/master/screenshots/screenshot_2_small.png)](http://youtu.be/g6tTDVceM9E)
# Sample
And have a look on a sample Youtube Video : [Youtube Link](http://www.youtube.com/watch?v=r95Tt6AS18c)
# Download
In your module [![Download](https://api.bintray.com/packages/florent37/maven/MaterialViewPager/images/download.svg)](https://bintray.com/florent37/maven/MaterialViewPager/_latestVersion)
```groovy
compile 'com.github.florent37:materialviewpager:1.2.3'//dependencies
compile 'com.flaviofaria:kenburnsview:1.0.7'
compile 'com.jpardogo.materialtabstrip:library:1.1.0'
compile 'com.github.bumptech.glide:glide:4.0.0'
```# Usage
Add MaterialViewPager to your activity's layout
```xml```
with **header_logo.xml**
```xml```
You will see on Android Studio Preview :
![alt preview](https://raw.github.com/florent37/MaterialViewPager/master/screenshots/preview_small.png)
To get a beautiful screen and enable preview, you theme may follow
```xml
<item name="android:textColorPrimary">@android:color/white</item>
<item name="drawerArrowStyle">@style/DrawerArrowStyle</item>
<item name="android:windowTranslucentStatus" tools:targetApi="21">true</item><item name="android:windowContentOverlay">@null</item>
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item><!-- Toolbar Theme / Apply white arrow -->
<item name="colorControlNormal">@android:color/white</item>
<item name="actionBarTheme">@style/AppTheme.ActionBarTheme</item><!-- Material Theme -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/accent_color</item><item name="android:navigationBarColor" tools:targetApi="21">@color/navigationBarColor</item>
<item name="android:windowDrawsSystemBarBackgrounds" tools:targetApi="21">true</item><!-- White arrow -->
<item name="colorControlNormal">@android:color/white</item><item name="spinBars">true</item>
<item name="color">@color/drawerArrowColor</item>```
# Retrieve the MaterialViewPager
You can use MaterialViewPager as an usual Android View, and get it by findViewById
```java
public class MainActivity extends ActionBarActivity {private MaterialViewPager mViewPager;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);mViewPager = (MaterialViewPager) findViewById(R.id.materialViewPager);
}
}
```# Customisation
First choose your color and height
```xml```
## Set your logo
```xml
```
### Titlebar Logo
[![Video](http://share.gifyoutube.com/ygbqnA.gif)](http://youtu.be/82gvoUqXb_I)
Your logo's layout must
* layout_height="@dimen/materialviewpager_logoHeight"**header_logo.xml**
```xml```
```xml
```
### Fading Logo
[![Video](http://share.gifyoutube.com/KYb0D4.gif)](http://youtu.be/9laniARQdqg)
**header_logo.xml**
```xml
```
```xml
```
## Toolbar Animation
## Hide Logo and Toolbar
[![Video](http://share.gifyoutube.com/y5V8JX.gif)](http://youtu.be/3ElFoqVKxag)
```xml
```
### Sticky Toolbar
[![Video](http://share.gifyoutube.com/yo2oJn.gif)](http://youtu.be/3ElFoqVKxag)
```xml
```
### Transparent Toolbar
[![Video](http://share.gifyoutube.com/ywbP8k.gif)](https://youtu.be/jUVO2cozQHQ)
```xml
```
## Header Layout
You can replace the header
```xml
```
### Moving Header
Or use the default header, with a KenBurns animation
```xml
```
### Static Header
Or simply use an ImageView as header
```xml
```
## Custom Tab Bar
You can set you own tab bar, by default I provided 2 implementations
### Standard
[![Video](http://share.gifyoutube.com/KdnoZX.gif)](http://youtu.be/VRinfxgewNE)
```xml
```
### News Stand
[![Video](http://share.gifyoutube.com/KeboLp.gif)](http://youtu.be/MBzK2s7HU1A)
```xml
```
### Or create your own tab bar
Create your own layout using a PagerSlidingTabStrip
**my_tabs.xml**
```xml```
**Don't forget to give it id="@id/materialviewpager_pagerTitleStrip"**
```xml
```
# Animate Header
[![Video](http://share.gifyoutube.com/yABkgW.gif)](http://youtu.be/90gKwEL1j2I )
Simply add a listen to the ViewPager
```java
mViewPager.setMaterialViewPagerListener(new MaterialViewPager.Listener() {
@Override
public HeaderDesign getHeaderDesign(int page) {
switch (page) {
case 0:
return HeaderDesign.fromColorResAndUrl(
R.color.blue,
"http://cdn1.tnwcdn.com/wp-content/blogs.dir/1/files/2014/06/wallpaper_51.jpg");
case 1:
return HeaderDesign.fromColorResAndUrl(
R.color.green,
"https://fs01.androidpit.info/a/63/0e/android-l-wallpapers-630ea6-h900.jpg");
case 2:
return HeaderDesign.fromColorResAndUrl(
R.color.cyan,
"http://www.droid-life.com/wp-content/uploads/2014/10/lollipop-wallpapers10.jpg");
case 3:
return HeaderDesign.fromColorResAndUrl(
R.color.red,
"http://www.tothemobile.com/wp-content/uploads/2014/07/original.jpg");
}//execute others actions if needed (ex : modify your header logo)
return null;
}
});
```Available
```java
HeaderDesign.fromColorAndUrl(Color.BLUE,"http:...);
HeaderDesign.fromColorResAndUrl(R.color.blue,"http:...);
HeaderDesign.fromColorAndDrawable(Color.BLUE,myDrawable);
HeaderDesign.fromColorResAndDrawable(R.color.blue,myDrawable);
```# Toolbar
```java
Toolbar toolbar = mViewPager.getToolbar();if (toolbar != null) {
setSupportActionBar(toolbar);ActionBar actionBar = getSupportActionBar();
actionBar.setDisplayHomeAsUpEnabled(true);
actionBar.setDisplayShowHomeEnabled(true);
actionBar.setDisplayShowTitleEnabled(true);
actionBar.setDisplayUseLogoEnabled(false);
actionBar.setHomeButtonEnabled(true);
}
```# ViewPager
```java
ViewPager viewPager = mViewPager.getViewPager();
viewPage.setAdapter(...);//After set an adapter to the ViewPager
mViewPager.getPagerTitleStrip().setViewPager(mViewPager.getViewPager());
```# RecyclerView
```java
mRecyclerView.addItemDecoration(new MaterialViewPagerHeaderDecorator());
mRecyclerView.setAdapter(yourAdapter);
```# ScrollView
The ScrollView must be an NestedScrollView`
```java
MaterialViewPagerHelper.registerScrollView(getActivity(), mScrollView, null);
```And include @layout/material_view_pager_placeholder` as first child
```xml
...your content...
```
# CHANGELOG
## 1.2.0
- header decorator instead of Adapter## 1.1.3
- header is now clickable
- fixed some scrolling issues## 1.1.2
- quick scroll fix
- can set a custom viewpager with app:viewpager_viewpager (the viewpager id must be id/materialviewpager_viewpager)## 1.1.0
- orientation change fix
- header image display fix
- elements on header are now clickable
- notifyHeaderChanged## 1.0.8
- added attribute viewpager_disableToolbar## 1.0.7
- fix bug on low resolutions## 1.0.6
- added attribute transparentToolbar
- added attribute animatedHeaderImage
- fixed bug when page is too small to scroll
- modified HeaderDesign implementation## 1.0.5
- smoother toolbar scrolling
- fixed bug with fitSystemWindow
- added HeaderDesign to modify the header color & image
- added displayToolbarWhenSwipe attribute## 1.0.4
Fixed :- Orientation changed
- Memory Leak
- Android >2.3 with NineOldAndroid
- Removed ListView usage## 1.0.3
Fixed : Rapid scrolling results in varying Toolbar height
RecyclerViewMaterialAdapter can handle a custom placeholder cells count (usefull for GridLayoutManager)
```java
public RecyclerViewMaterialAdapter(RecyclerView.Adapter adapter, int placeholderSize)
```## 1.0.2
Added attributes
```java
app:viewpager_parallaxHeaderFactor="1.5"
app:viewpager_headerAdditionalHeight="20dp"
```*parallaxHeaderFactor* Modify the speed of parallax header scroll (not the speed of KenBurns effect)
*parallaxHeaderFactor* Set up the height of the header's layout displayed behind the first cards viewFixed issue when scroll down & scroll up multiples time while hideToolbarAndTitle="true"
## 1.0.1
Added attributes
```java
viewpager_headerAlpha="0.6"
```# Community
Looking for contributors, feel free to fork !
Tell me if you're using my library in your application, I'll share it in this README
# Dependencies
* [Glide][glide] (from Bumptech)
* [KenBurnsView][kenburnsview] (from flavioarfaria)
* [Material PagerSlidingTabStrip][pagerslidingtitlestrip] (from jpardogo, forked from astuetz)# Credits
Author: Florent Champigny [http://www.florentchampigny.com/](http://www.florentchampigny.com/)
Blog : [http://www.tutos-android-france.com/](http://www.tutos-android-france.com/)
Fiches Plateau Moto : [https://www.fiches-plateau-moto.fr/](https://www.fiches-plateau-moto.fr/)
License
--------Copyright 2015 florent37, Inc.
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.[glide]: https://github.com/bumptech/glide
[kenburnsview]: https://github.com/flavioarfaria/KenBurnsView
[pagerslidingtitlestrip]: https://github.com/jpardogo/PagerSlidingTabStrip