如何预加载对话框
我有一个自定义对话框,尽管在其构造函数中放入了所有代码来膨胀视图,但与后续启动相比,首次启动对话框时似乎需要更长的时间,就好像仅当我调用dialog.show(); 时一样它实际上创造了它。我该如何做我想要的事情,正确预加载对话框以防止首次运行延迟?
I have a custom dialog and despite putting in all the code to inflate the view in its constructor, it seems like it takes much longer when the dialog is first launched compared to subsequent launches, as if only when i call dialog.show(); it actually creates it. How could I do what I intended, to properly preload the dialog to prevent this first run delay?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 AsyncTask<> 扩展您的类并在 doInBackground() 中执行所有工作。在 onPreExecute() 显示对话框中,在 onPostExecute() 中从 UI 中删除对话框。
You can Extend your class with AsyncTask<> and perform all work in doInBackground().in onPreExecute() Show Dialog and in onPostExecute() remove the dialog from UI.