私はProgressDialogをアクティビティの中心に配置しようとしています。ここで アクティビティの中心のProgressDialog
は私のProgressDialogです: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
のように示されている私はTUがpd.getWindow().setGravity(Gravity.CENTER);
を使用しようとしましたが、それは私のために働いていない。
アクティビティの中心にProgressDialogを配置するにはどうすればいいですか?
ありがとう、残念ながら:だからここ
は結果であり、それは動作しません –