如何为 android 应用程序创建帮助视图?

How to create Help view for android application?

如何为 android 应用程序创建以下帮助视图。此图片来自快牙应用,首次打开后出现

你可以试试TourGuide(https://github.com/worker8/TourGuide).

截图(https://raw.githubusercontent.com/worker8/all_my_media_files/695d9a2/2015-07-01_screenshot.png)

或 MaterialIntroView(https://github.com/iammert/MaterialIntroView).

截图(https://raw.githubusercontent.com/iammert/MaterialIntroView/master/art/materialintroviewgif.gif)

或者你可以简单地做。

将布局更改为:

<FrameLayout>
    <your rootView/>
    <your guideView/>
</FrameLayout>

当人们进入这个页面时,你显示你的guideView.When人们点击下一个,你隐藏guideView.The透明区域可以通过在你的rootView中添加相同的视图或者改变你的ondraw来实现guideView.