Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/guangzq/StepDialog

一行代码实现ofo app首次注册时的步骤控件
https://github.com/guangzq/StepDialog

Last synced: about 23 hours ago
JSON representation

一行代码实现ofo app首次注册时的步骤控件

Lists

README

        

# StepDialog
一行代码实现ofo app首次注册时的步骤控件

# Preview
![stepdialog](gif/stepdialog.gif)

# Gradle
```
dependencies {
compile 'com.zqg:library:1.0.2'
}
```

# Usage
```
StepDialog.getInstance()
.setImages(new int[]{R.drawable.new_user_guide_1, R.drawable.new_user_guide_2, R.drawable.new_user_guide_3, R.drawable.new_user_guide_4})
.show(getFragmentManager());
```

# API
| API | 释义 |
| ------------- |:-------------:|
| setPageTransformer | ViewPager切换动画方式,分为DepthPageTransformer和ZoomOutPageTransformer两种方式 |
| setCanceledOnTouchOutside | 点击四周是否取消dialog,默认取消 |
| setOutsideIsTransparent | 设置背景四周是否透明,调用时需要放到show方法后面 |
| setOnCancelListener | dissmiss监听,可以用来进行dissmiss后的操作,比如跳转 |

## ViewPager的两种切换方式
### DepthPageTransformer方式
#### 示例
```
StepDialog.getInstance()
.setImages(new int[]{com.zqg.dialogviewpager.R.drawable.new_user_guide_1, com.zqg.dialogviewpager.R.drawable.new_user_guide_2, com.zqg.dialogviewpager.R.drawable.new_user_guide_3, com.zqg.dialogviewpager.R.drawable.new_user_guide_4})
.setPageTransformer(new DepthPageTransformer())
.show(getFragmentManager());
```
![t1](gif/t1.gif)

### ZoomOutPageTransformer方式
#### 示例
```
StepDialog.getInstance()
.setImages(new int[]{com.zqg.dialogviewpager.R.drawable.new_user_guide_1, com.zqg.dialogviewpager.R.drawable.new_user_guide_2, com.zqg.dialogviewpager.R.drawable.new_user_guide_3, com.zqg.dialogviewpager.R.drawable.new_user_guide_4})
.setPageTransformer(new ZoomOutPageTransformer())
.show(getFragmentManager());
```
![t2](gif/t2.gif)

# License

```
MIT License

Copyright (c) 2017 祝起光

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```