Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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!

Awesome Lists containing this project

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();