Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jaydenxiao2016/HighLightGuideView
A library for app's new feature guiding,it supports the shape of round, oval and rectangular!
https://github.com/jaydenxiao2016/HighLightGuideView
Last synced: about 1 month ago
JSON representation
A library for app's new feature guiding,it supports the shape of round, oval and rectangular!
- Host: GitHub
- URL: https://github.com/jaydenxiao2016/HighLightGuideView
- Owner: jaydenxiao2016
- Created: 2016-08-16T07:16:29.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-08-18T07:19:45.000Z (over 8 years ago)
- Last Synced: 2024-08-02T01:21:09.002Z (4 months ago)
- Language: Java
- Size: 1.42 MB
- Stars: 471
- Watchers: 16
- Forks: 100
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-github-android-ui - HighLightGuideView - 用于 app 新功能高亮引导的库 (引导图(Intro))
README
# HighLightGuideView
**项目介绍:** A library for app's new feature guiding,it supports the shape of round, oval and rectangular!
(一个用于 app 新功能高亮引导的库,支持圆形、椭圆形、矩形高亮形状)
![预览图](https://github.com/jaydenxiao2016/HighLightGuideView/blob/master/screenshots/device-2016-08-16-161213.gif)**支持配置属性:**
(1)外部点击是否关闭setTouchOutsideDismiss
(2)控件高亮形状类型,有圆形、椭圆形、矩形setHighLightStyle
(3)高亮画笔类型,有平滑和一般,默认平滑setMaskblurstyle
(4)蒙层颜色setMaskColor
(5)高亮控件padding,setHighLisghtPadding**使用方法:**
dependencies {
compile 'com.jaydenxiao:guider:1.0.0'
}**1. 全屏提示,没高亮控件情况引导**
HighLightGuideView.builder(this)
.addNoHighLightGuidView(R.drawable.listlead)
.setMaskColor(getResources().getColor(R.color.mask_color))
.show();**2. 有高亮控件情况引导(单个高亮控件)**
HighLightGuideView.builder(this)
.addHighLightGuidView(view, R.drawable.dmtext)
.setHighLightStyle(HighLightGuideView.VIEWSTYLE_OVAL)
.show();**3. 有高亮控件情况引导(多个高亮控件)**
HighLightGuideView.builder(this)
.addHighLightGuidView(view1, R.drawable.dstext)
.addHighLightGuidView(view2, R.drawable.dmtext)
.setHighLightStyle(HighLightGuideView.VIEWSTYLE_OVAL)
.show();