如何制作android欢迎屏幕

时间:2015-09-07 17:41:25

标签: android

是否有可能为Android应用程序制作第一个启动画面,就像首次启动Android操作系统时出现的屏幕一样。

无论如何都要制作看起来像这样的东西

enter image description here

1 个答案:

答案 0 :(得分:3)

看看这个ShowCaseView Library

通过此功能,您可以制作与图像类似的活动:

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

修改

由于SwhowCaseView Library已被弃用,因为其所有者说:

  

目前,ShowcaseView尚未正式开发;问题无法打开,PR也不会被接受。

     

我决定做出这个决定,因为我想用更好的API从头开始重写项目。谷歌在Android中引入的很多东西打破了ShowcaseView,并且很难用当前形式的项目进行这些更改。

     

该项目仍在Maven上可用,请参阅下面的说明。请参阅new-scv分支以开发新API。

这里有更多Libraries来做你想做的事。

- MaterialShowCase Library

- TourGuide

- RoboDemo

- ShowCaseViewLibrary