アニメーションシーケンスが表示される進行状況ダイアログを作成しようとしましたが、これを達成しましたが、実行中にダイアログに表示される空白を削除できません。ローディングサークルのみをダイアログとして表示したい。以下は、進行状況ダイアログを表示するコードです。 mytitalは私のアニメーション xml ファイルです。
private void showDialog() {
ProgressDialog dialog = new ProgressDialog(ctx);
dialog.setCancelable(true);
dialog.getWindow().setLayout(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT);
dialog.setIndeterminate(true);
dialog.setIndeterminateDrawable(ctx.getResources().getDrawable(R.drawable.mytital));
dialog.show();
}