Android技术漫谈Android开发经验谈程序员

Android UI Libs之ShowcaseView

2016-05-24  本文已影响841人  lavor

Android UI Libs之ShowcaseView


1. 说明


ShowcaseView,顾名思义,展柜视图,展示界面上某一部分的作用,一个用来做新手引导与使用说明的最佳第三方库。

2. 配置


在模块中添加依赖:compile 'com.github.amlcurran.showcaseview:library:5.4.3'

3. 使用


ShowcaseView的使用非常简单

 ViewTarget target = new ViewTarget(R.id.target, this);
        new ShowcaseView.Builder(this)
                .withMaterialShowcase()
                .setTarget(target)
                .setContentTitle("ShowcaseView")
                .setContentText("This is highlighting the Home button")
                .hideOnTouchOutside()
                .build();  

4. 用户注册引导


我做了一个简单的用户注册引导界面:

程序源代码下载:https://github.com/lavor-zl/UILibs

上一篇下一篇

猜你喜欢

热点阅读