【发布时间】:2017-11-02 14:42:23
【问题描述】:
我正在尝试将我的 ProgressDialog 放在 Activity 的中心。
这是我的进度对话框:
final ProgressDialog pd = new ProgressDialog(ActivityLoginRegistration.this, R.style.ProgressDialogStyle);
pd.setMessage(getString(R.string.Loading_message_alert));
pd.setCancelable(false);
pd.show();
这是我的风格资源:
<style name="ProgressDialogStyle">
<item name="android:layout_gravity">center</item>
<item name="colorAccent">#A5865F</item>
</style>
但是 pd 显示为 this
我试过你用pd.getWindow().setGravity(Gravity.CENTER);
但它对我不起作用。
如何将 ProgressDialog 放在我的 Activity 的中心?
【问题讨论】:
标签: android view progress-bar progressdialog