All Projects → yilylong → Highlight Userguideview

yilylong / Highlight Userguideview

用户指引提示view,新特性高亮指示 HighLight

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Highlight Userguideview

Guideview
简单易用的高亮引导工具,可高度自定义。
Stars: ✭ 94 (-85.47%)
Mutual labels:  guide, highlight
guide
A new feature guide component by react 🧭
Stars: ✭ 597 (-7.73%)
Mutual labels:  guide, highlight
Lighter
💡A highlight & guide library for android.
Stars: ✭ 260 (-59.81%)
Mutual labels:  guide, highlight
Haskell Study Plan
An opinionated list of resources for learning Haskell
Stars: ✭ 493 (-23.8%)
Mutual labels:  guide
Flutter showcaseview
Flutter plugin that allows you to showcase your features on iOS and Android. 👌🔝🎉
Stars: ✭ 502 (-22.41%)
Mutual labels:  highlight
Python Guide
Python best practices guidebook, written for humans.
Stars: ✭ 24,050 (+3617.16%)
Mutual labels:  guide
Kov Blog
A blog platform built with koa,vue and mongoose. 使用 koa ,vue 和 mongo 搭建的博客页面和支持markdown语法的博客编写平台,自动保存草稿。博客地址:https://chuckliu.me
Stars: ✭ 635 (-1.85%)
Mutual labels:  highlight
Introneuralnetworks
Introducing neural networks to predict stock prices
Stars: ✭ 486 (-24.88%)
Mutual labels:  guide
React Tdd Guide
A series of examples on how to TDD React
Stars: ✭ 585 (-9.58%)
Mutual labels:  guide
Setup.py
📦 A Human's Ultimate Guide to setup.py.
Stars: ✭ 4,963 (+667.08%)
Mutual labels:  guide
Lumin
A JavaScript library to progressively highlight any text on a page.
Stars: ✭ 545 (-15.77%)
Mutual labels:  highlight
Maintainers Guide To Staying Positive
Don't let the trolls get you down! Use this as a reference to avoid open-source burnout and keep doing what you love: writing code! Contributions and any kind of improvements are very welcome!
Stars: ✭ 507 (-21.64%)
Mutual labels:  guide
Guide
Kubernetes clusters for the hobbyist.
Stars: ✭ 5,150 (+695.98%)
Mutual labels:  guide
Vertx Guide For Java Devs
Vert.x 3 guide for Java developers
Stars: ✭ 500 (-22.72%)
Mutual labels:  guide
Vue Blog
A single-user blog built with vue2, koa2 and mongodb which supports Server-Side Rendering
Stars: ✭ 586 (-9.43%)
Mutual labels:  highlight
Curtain
一个Android 高亮View蒙层库
Stars: ✭ 492 (-23.96%)
Mutual labels:  guide
Traces.vim
Range, pattern and substitute preview for Vim
Stars: ✭ 568 (-12.21%)
Mutual labels:  highlight
Spring Guide
Spring 실전 가이드
Stars: ✭ 521 (-19.47%)
Mutual labels:  guide
Github Serendipity.github.io
快速找到流行开源项目 browse and find high quality repo quickly and elegantly, with trending, rank, awesome, topics, similar dimensions
Stars: ✭ 524 (-19.01%)
Mutual labels:  guide
Es6 For Humans
A kickstarter guide to writing ES6
Stars: ✭ 5,170 (+699.07%)
Mutual labels:  guide

996.icu

UserGuideView

用户指引view

应用推出新功能需要给给用户提示指引一下.传入需要指引的View即可

How To Useage

引入依赖

step1.Add it in your root build.gradle at the end of repositories:

allprojects {
	repositories {
		...
		maven { url 'https://jitpack.io' }
	}
}

Step 2. Add the dependency

dependencies {
        implementation 'com.github.yilylong:UserGuideView:1.0.8'
}

布局文件中引入UserGuideView然后:

guideView.setHighLightView(UserGuideTestActivity.this,convertView);

guideView.setHighLightView(targetView);

传入当前需要高亮的view即可 之前的方法持有一个activity的引用不太好 去掉了

支持高亮框形状 属性app:HighlightViewStyle="oval" 方形 圆形 椭圆 可选

提示的图片 属性 app:tipView="@mipmap/tip_view"

蒙版层颜色 属性 app:maskColor

高亮框边缘模糊效果 属性 app:MaskBlurStyle="solid" normal/solid

需要设置状态栏高度时候调用guideView.setStatusBarHeight(0) v1.0.7

修改右下角箭头位置的计算bug

v1.0.3新增

1.0.1可以支持批量设置高亮view 但漏了设置每个高亮view对应的tipview,1.0.3补上

setHighLightView(LinkedHashMap<View,Integer> targetsWithTipViews);

实际应用中,tipview 和 箭头等设计图不一样,很难做到精准定位,所以增加了设置每个箭头和tipview位移的方法,来微调位置以达到最合适的布局。

setArrowDownCenterMoveX(int jtDownCenterMoveX)
setArrowUpRightMoveX(int jtUpRightMoveX)
setArrowUpLeftMoveX(int jtUpLeftMoveX)
setArrowUpRightMoveX(int jtUpRightMoveX)
setArrowUpCenterMoveX(int jtUpCenterMoveX)
setArrowDownRightMoveX(int jtDownRightMoveX)
setArrowDownLeftMoveX(int jtDownLeftMoveX)
setArrowDownCenterMoveX(int jtDownCenterMoveX)
setTipViewMoveX(View highlightView,int tipViewMoveX)
setTipViewMoveY(View highlightView,int tipViewMoveY)

等几个方法

v1.0.2新增

增加是否显示箭头的方法

v1.0.1新增

支持同时设置多个需要高亮的View并将按顺序显示

guideView.setHightLightView(top,icon,back);

支持设置指示箭头

guideView.setArrowUpCenter(R.mipmap.up_arrow);

支持将自定义View作为tipview

guideView.setTipView(tipTextView,400,200);

详情参考Demo

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].