我已经完成了我的应用程序的开发,我想逐步教育用户如何使用该应用程序。我应该只是截取不同的活动截图,在photoshop上编辑它(用箭头和文字说明什么是什么),然后在安装时将这些图像作为活动介绍,或者是否有更好的标准化方法来做这个?
答案 0 :(得分:0)
所以你需要为你的应用程序导览。你可以试试这样:
1)在您要显示信息的transparent
上方Activity
Activity
。您可以使用以下主题
<style name="Theme.Transparent" parent="android:Theme">#03afee
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">true</item>
<item name="android:backgroundDimEnabled">false</item>
</style>
2)使用Arrows
和Icon
指出各种Position
和Function
Hope this could Help...