Android Positioning Progress Dialog or Custom Progress Dialog

android, progressdialog

Solution

I've tried this one and works:

ProgressDialog dialog = new ProgressDialog(this);
dialog.getWindow().setGravity(Gravity.BOTTOM);

Problem

I don't know how to position the progress dialog(the one with the rotating image). When my application starts its display an full screen image and a progress dialog box. I need to moved the progress dialog box a little lower. Thanks Rajesh

Original source

Related problems