I am trying to show progress dialog using this code
pd = ProgressDialog.show(v.getRootView().getContext(), "", "Please Wait....",true,true);
MyThread mt = new MyThread(SAVE1);
mt.setPriority(Thread.MIN_PRIORITY);
mt.start();
but I can only see the progress dialog not progress effect on it(like Rounding some Image) any one can help me ?