Android应用指南一步一步

时间:2014-01-13 11:14:42

标签: android

我已经完成了我的应用程序的开发,我想逐步教育用户如何使用该应用程序。我应该只是截取不同的活动截图,在photoshop上编辑它(用箭头和文字说明什么是什么),然后在安装时将这些图像作为活动介绍,或者是否有更好的标准化方法来做这个?

1 个答案:

答案 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)使用ArrowsIcon指出各种PositionFunction

Hope this could Help...