欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

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

时间:2022-01-05 10:06:43|栏目:Android代码|点击:

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

1. public void cancel ()

Since: API Level 1
Cancel 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 1
Dismiss 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沉浸式状态栏的实现代码

栏    目:Android代码

下一篇:基于Android扫描sd卡与系统文件的介绍

本文标题:Android中ProgressDialog的dismiss()与cancel()方法的区别

本文地址:http://www.codeinn.net/misctech/189155.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有