如何在特定视图上显示进度对话框

时间:2013-04-01 06:58:34

标签: android

这样的事情:

ProgressDialog pd = new ProgressDialog(this);
pd.setMessage("Loading");
pd.show();

将显示一个对话框,覆盖整个屏幕,使所有其他视图无效。

如何在特定视图上显示对话框,例如在下载图像之前在ImageView上显示。同时保持其他观点活跃。

示例:Amazon Applicaiton

Spinner/Progress dialog显示为完全不同的视图,而其他视图是活动的(可点击)。它是某种自定义视图吗?

enter image description here

我尝试了什么:

我尝试将ImageView或此类view加载到其他Fragment并加载view之前spinner image加载animated(rotated) } TextView获取fragment。必须有一个非常简单的方法吗?

我尝试使用TextView,白色背景为{{1}},其中{{1}}已设为动画。

enter image description here

1 个答案:

答案 0 :(得分:0)