2011-11-19 175 views
3

我真的很感兴趣,如果我可以在同一时间在一个活动中在Android中创建两个对话框。这是我想要实现的:我想要一个带有取消按钮的圆形进度条,并且在我的活动底部有一个指示某些计算的水平进度对话框。有没有任何选择来创建这样或类似的东西?Android在一个活动中创建两个对话框

在此先感谢!

enter image description here

回答

2

没有理由为什么同步栏,进度条和取消按钮不可能是具有透明背景相同的对话的一部分。

2

您可以拨打

ProgressDialog#getWindow#setGravity(...) to change the gravity. 

所以:

ProgressDialog dialog = ProgressDialog.show(AContext, "Test", "On the bottom"); 
      dialog.getWindow().setGravity(Gravity.BOTTOM);