[android-developers] Re: Customizing progress Dialogs

2013-03-05 Thread bob
Here's one method you can use: * Dialog d = new Dialog(this);* * d.getWindow().setBackgroundDrawableResource(R.drawable.transparent);* * d.setContentView(new ProgressBar(this));* * d.show();* Of course you will need a transparent PNG in your drawable folder. Thanks. On Tuesday, February 12, 20

[android-developers] Re: Customizing progress Dialogs

2013-03-04 Thread bob
Also, you can subclass ProgressDialog and modify the onCreate method, using the current onCreate code as a reference. On Tuesday, February 12, 2013 10:40:58 PM UTC-6, Ansh wrote: > > Hi Guys , > > I want to customize the progress dialog for my app.I want to show only > spinner spinning with

[android-developers] Re: Customizing progress Dialogs

2013-03-03 Thread Ansh
Thanks buddy On Wednesday, February 13, 2013 11:07:04 AM UTC+5:30, ravi . wrote: > > You can use ProgressBar widget. It will show only spinner > -- -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to andro

[android-developers] Re: Customizing progress Dialogs

2013-02-12 Thread ravi .
You can use ProgressBar widget. It will show only spinner -- -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-dev

[android-developers] Re: Customizing progress Dialogs

2013-02-12 Thread skink
Ansh wrote: > Hi Guys , > > I want to customize the progress dialog for my app.I want to show only > spinner spinning without the black background.I have googled a lot but > nothings seems to be working.Please tell me how can i achieve that effect. what would you like to see instead of black bac