android-如何制作屏幕助手

时间:2016-06-13 04:03:22

标签: android android-button

我在许多应用程序中看到这一点,当您第一次打开应用程序时,显示半透明屏幕并标记工具并显示有关它的一些描述。

像这样:

enter image description here

正如您所看到的,它在菜单上标记了一个图标并显示了一些关于它的文本,页面末尾有一个按钮。

我怎样才能做出这样的事情?

1 个答案:

答案 0 :(得分:0)

尝试这种方式获取Showcase

View showcasedView = findViewById(R.id.view_to_showcase);
ViewTarget target = new ViewTarget(showcasedView);
ShowcaseView.insertShowcaseView(target, this, R.string.showcase_title, R.string.showcase_details);

或者你可以试试TourGuide