我有拖车活动:
> FirstPageActivity
> SecondPageActivity
应用程序通过FirstPageActivity调用SecondPageActivity …
和应用程序在SecondPageActivity中发送HttpRequest.
所以我想在FirstPageActivity中显示Progress Dialog,在SecondPageActivity完成下载数据之后,它会关闭Progress然后出现那可能吗?
解决方法:
I want to show Progress Dialog in the FirstPageActivity and After the SecondPageActivity Finish downloading the data, it Dismiss the Progress and then Appear.Is that Possible ?
没有.
您无法处理一个Activity的UI功能或来自另一个`Activity的任何功能.
如果你在FirstPageActivity中启动ProggressDailog,那么你必须在onPause()中将其解除,然后再按照你说的SecondPageActivity继续执行其他Activity.
您可以从onCreate()或onResume()方法在SecondPageActivity中启动一个新的ProggressDailog.
更新:
从ProggressDailog的文档中可以看到,要初始化ProggressDialog需要传递当前的Activity上下文.
ProgressDialog(Context context)
ProgressDialog(Context context, int theme)