Curtain
一个更简洁好用的高亮蒙层库:
- 一行代码完成某个View,或者多个View的高亮展示
- 高亮区域支持自定义大小、操作灵活
- 顺应变化,基于Android X
- 配置简单,导入方便
Installation:
dependencies {
implementation 'com.qw:curtain:0.0.3'
}
Usage:
private void showCurtain(){
new Curtain(MainActivity.this)
.with(findViewById(R.id.textView))
.show();
}
private void showCurtain(){
new Curtain(MainActivity.this)
.with(findViewById(R.id.textView))
.withPadding(findViewById(R.id.textView),24)
.show();
}
private void showCurtain(){
new Curtain(MainActivity.this)
.with(findViewById(R.id.textView))
.with(findViewById(R.id.imageView))
.show();
}
- 如果你在蒙层上加上一些其他的元素,可以额外传入View布局:
private void showCurtain(){
new Curtain(MainActivity.this)
.with(findViewById(R.id.textView))
.setTopView(R.layout.nav_header_main)
.show();
}
private void showCurtain(){
new Curtain(MainActivity.this)
.with(findViewById(R.id.imageView))
.setCallBack(new Curtain.CallBack() {
@Override
public void onShow(IGuide iGuide) {
}
@Override
public void onDismiss(IGuide iGuide) {
}
}).show();
}
private void showCurtain() {
new Curtain(MainActivity.this)
.with(findViewById(R.id.imageView))
//是否允许回退关闭蒙层
.setCancelBackPressed(false)
// 设置蒙层背景颜色
.setCurtainColor(0x88000000)
// 设置蒙层出现的动画 默认渐隐
.setAnimationStyle(R.style.testAnimation)
.show();
}
Github地址
项目地址:https://github.com/soulqw/Curtain