android- 如何制作屏幕助手

android- How to make screen helpers

我在很多应用程序中都看到过这种情况,当你第一次打开应用程序时,会显示一个半透明的屏幕并标记一个工具并显示一些关于它的描述。

像这样:

如您所见,它在菜单上标记了一个图标并显示了一些相关文字,页面末尾有一个按钮。

我怎样才能做出这样的东西?

试试这个方法得到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