如何在itemclick上显示进度对话框,android

发布于 2024-09-26 11:18:45 字数 349 浏览 7 评论 0原文

您好,我创建了一个 Activityname 作为 ZBC。在我创建自定义列表视图的地方,我可以使用列表视图上 OnItemClickListener 的 onItemClick() 方法检测单击事件。我希望在单击 ListView 时显示进度对话框。我使用了以下代码,但没有得到 ProgressDialog

如何在 onItemClick 方法中显示进度对话框

ProgressDialog.show(ABC.this, "", "Loading...", true);

但我没有得到 ProgressDIalog

如何在 onitemclick 上显示进度对话框,android

Hi I have created an Activityname as ZBC. Where i have created Customized List view I am able to detect on click event using onItemClick() method of OnItemClickListener on list view. I want progress dialog to be displayed on click on ListView. I used the following code but I didnot get ProgressDialog

How to display progress dialog in onItemClick method

ProgressDialog.show(ABC.this, "", "Loading...", true);

But I didnot get ProgressDIalog

how to show progress dialog onitemclick, android

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北城孤痞 2024-10-03 11:18:45

我在我的应用程序中使用了这个:

ProgressDialog.show(Main.this, null, getText(R.string.loading), true, true);

给 null 和非空字符串作为标题,并且它是可以取消的。

您在哪里设置了 onItemClickListener,一些内容可能会有所帮助?也许你在错误的地方调用它。

I used this in my application:

ProgressDialog.show(Main.this, null, getText(R.string.loading), true, true);

Giving null and not empty string as title, and it is cancelable.

Where did you set the onItemClickListener, some contect may be helpful? Maybe you are call it on wrong place.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文