我在上传时逐个调用多个Web服务。在这种情况下,我无法与应用程序进行交互

时间:2013-01-31 10:50:02

标签: android android-layout android-asynctask

我的问题是,当我第一次调用webservice时,我正在显示ProgressDialog,请稍候...消息。在这种情况下,我不能做其他事件,如点击或其他。 我必须等到所有网络服务完成。

我想在单个活动中调用多个Web服务。但我想在右上角显示进度条,如android g + app和许多其他应用程序。通过这种方式,我无法与app。

互动

请你能给我一个完美的解决方案吗?

1 个答案:

答案 0 :(得分:1)

您的单个​​问题有多个答案。

I want to show progress bar in top right corner like android g+ app and many other apps

对于您的查询,您必须使用自定义进度对话框。网上有许多资源可用于制作自定义对话框。

See Example & Reference

Next, I call first webservice I am showing ProgressDialog with please wait... message. In this case I cant do other event like click or other.I have to wait until all webservices completed.I want to call multiple web services in single activity. 

对于此查询,您必须管理线程 asynctask任务,以便管理您的网络服务。

See Example & Reference