如何在itemclick上显示进度对话框,android
您好,我创建了一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在我的应用程序中使用了这个:
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.