Android 媒体播放器流媒体问题
抱歉我的英语我的问题是在我的应用程序媒体播放器播放流媒体网址。如果用户立即单击“下一步”按钮,则 ui 会阻塞一段时间并出现 ANR 问题 如果它在 GPRS 上运行,如何解决该问题 请有人帮助我
提前致谢
sorry for my english my problem is in my app media player plays streaming urls. if user clicks next button immediateley then ui blocks for some time and giving ANR problem If it is working on GPRS how to resolve that issue Please some body help me
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果 UI 线程在您的操作后 5 秒内没有收到任何响应,它将挂起并向您显示 ANR。因此,做一件事:每当用户单击按钮时,启动进度加载器(旋转器),一旦您的操作得到响应,就关闭进度对话框并显示结果。
If the UI thread does not get any response within 5 seconds from your action, it will hang and will show you ANR. So, do one thing: whenever user clicks on the button, start a progress loader (spinner) and as soon as you get response from your action, dismiss the progress dialog and show the result.