forked from ksoichiro/Android-ObservableScrollView
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
74 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
{ | ||
"index": { | ||
"title": "Advanced techniques" | ||
}, | ||
"sliding-up": { | ||
"title": "Sliding up pattern" | ||
}, | ||
|
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,8 @@ | ||
# Advanced techniques | ||
|
||
This section describes advanced scrolling techniques. | ||
When you've done this topic, you could be be an expert of handling scrolls! | ||
I'd appreciate it if you could suggest new patterns or improvements of the library. | ||
|
||
1. [Sliding up pattern](../../docs/advanced/sliding-up.md) | ||
1. [ViewPager pattern](../../docs/advanced/viewpager.md) |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Basic techniques | ||
|
||
This section explains the basic scrolling techniques. | ||
|
||
1. [Show and hide the Action Bar](../../docs/basic/show-hide-action-bar.md) | ||
1. [Translating the Toolbar](../../docs/basic/translating-toolbar.md) | ||
1. [Translating itself](../../docs/basic/translating-itself.md) | ||
1. [Parallax image](../../docs/basic/parallax-image.md) | ||
1. [Sticky header](../../docs/basic/sticky-header.md) | ||
1. [Filling gap on top of the Toolbar](../../docs/basic/filling-gap.md) |
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,4 +1,7 @@ | ||
{ | ||
"index": { | ||
"title": "Try the example app" | ||
}, | ||
"google-play": { | ||
"title": "Download from Google Play" | ||
}, | ||
|
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,9 @@ | ||
# Try the examples app | ||
|
||
To understand how it works, let's see the existing example app | ||
and check if there are some patterns you want to implement. | ||
|
||
1. [Download from Google Play](../../docs/example/google-play.md) | ||
1. [Download from wercker](../../docs/eaxmple/wercker.md) | ||
1. [Build on Android Studio](../../docs/example/android-studio.md) | ||
1. [Build on Eclipse](../../docs/example/eclipse.md) |
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,3 +1,26 @@ | ||
# Overview | ||
|
||
Android-ObservableScrollView is a library to handle scroll position for Android library, and contains lots of examples to demonstrate how this library works. | ||
|
||
However, creating awesome scrolling effects depends deeply on how you use it: layout, offset calculation to animate views, etc. | ||
|
||
This documentation describes how to install this library and apply to your application. | ||
|
||
## Try quickly | ||
|
||
See [Quick start](../docs/quick-start/index.md) section first. | ||
|
||
## See the complete examples | ||
|
||
Download from Google Play or wercker for quick trial, | ||
or you'd like to build it, see [Try the example app](../docs/example/index.md) section. | ||
|
||
## Learn from basics | ||
|
||
Okay, now you've setup environments, let's learn how to use it in your app. | ||
See [Basic techniques](../docs/basic/index.md) section. | ||
|
||
## Challenge complex and awesome techniques | ||
|
||
If you'd like to create complex, awesome scrolling animation using ViewPager or something, | ||
please check out [Advanced techniques](../docs/advanced/index.md) section. |
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,4 +1,7 @@ | ||
{ | ||
"index": { | ||
"title": "Quick start" | ||
}, | ||
"dependencies": { | ||
"title": "Dependencies" | ||
}, | ||
|
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,8 @@ | ||
# Quicks start | ||
|
||
Thank you for having interest in this library! | ||
In this section, I'll show some quick instructions for introducing this library into your app. | ||
|
||
1. [Dependencies](../../docs/quick-start/dependencies.md) | ||
1. [Layout](../../docs/quick-start/layout.md) | ||
1. [Animation codes](../../docs/quick-start/animation.md) |