在单独的图层上创建应用程序教程

时间:2015-08-18 10:33:03

标签: android

我想创建一个"教程" /概述如何使用我的应用程序,非常类似于这个:

enter image description here

enter image description here

我可以使用任何库来实现它吗?

1 个答案:

答案 0 :(得分:1)

您可以使用此库,名为

showcase view

您可以使用Gradle

添加它
compile 'com.github.amlcurran.showcaseview:library:5.0.0'

它使用构建器模式来做它的事情

new ShowcaseView.Builder(this)
    .setTarget(new ActionViewTarget(this, ActionViewTarget.Type.HOME))
    .setContentTitle("ShowcaseView")
    .setContentText("This is highlighting the Home button")
    .hideOnTouchOutside()
    .build();