0

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 ?

Jignesh Ansodariya
  • 12,583
  • 24
  • 81
  • 113

1 Answers1

0
pd = ProgressDialog.show(yourRunningActivity.this, "loading", "Please Wait....");
                MyThread mt = new MyThread(SAVE1);
                mt.setPriority(Thread.MIN_PRIORITY);
                mt.start();
Mohammed Azharuddin Shaikh
  • 41,633
  • 14
  • 96
  • 115