Android中ProgressDialog的dismiss()与cancel()方法的区别

Android中ProgressDialog的dismiss()与cancel()方法的区别,第1张

概述progressDialog,它有两个方法dialog.cancel()和dialog.dimiss()1.publicvoidcancel()Since:APILevel1

progressDialog,它有两个方法dialog.cancel() 和 dialog.dimiss()

1. public voID cancel ()

Since: API Level 1Cancel the dialog. This is essentially the same as calling dismiss(),but it will also call your DialogInterface.OnCancelListener (if registered).

2.public voID dismiss ()

Since: API Level 1dismiss this dialog,removing it from the screen. This method can be invoked safely from any thread. Note that you should not overrIDe this method to do cleanup when the dialog is dismissed,instead implement that in onStop().

其中,采用cancel()方法会调用DialogInterface.OnCancelListener ()。

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持编程小技巧!

总结

以上是内存溢出为你收集整理的Android中ProgressDialog的dismiss()与cancel()方法的区别全部内容,希望文章能够帮你解决Android中ProgressDialog的dismiss()与cancel()方法的区别所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1146497.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存