我试图制作一个显示动画序列的进度对话框,我实现了这一点,但我无法在运行时消除对话框中显示的空白空间。我希望只有加载圈显示为对话框。下面是显示我的进度对话框的代码。 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();
}