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,103
  • 22
  • 76
  • 108

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
  • 40,812
  • 14
  • 95
  • 115