Android动态壁纸:如何在加载新设置时提供反馈?
我创建了一个相对占用内存的动态壁纸。您可以在多个主题之间进行选择。
当选择新主题时,必要的位图将被存储到内存中。在此过程中,应用程序不接受用户的输入。
在这个缓存过程中是否有可能给用户一个反馈?也许是进度条或沙漏?
问候, 罗伯特
I created a live wallpaper which is relatively memory-intensive. You can choose between multiple themes.
When a new theme is chosen, the nescessary bitmaps are being stored to the memory. During this process the application just takes no input from the user.
Is there any possibility to give the user a feedback during this cache process? Maybe a progress bar or a hourglass?
Greetings,
Robert
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议您使用 Asynctask ,它有
onProgressUpdate
函数如本例所示:I recomend you to use an Asynctask for that , it has the
onProgressUpdate
function like in this example: