[android-developers] Re: ProgressBar proportions problem

2012-11-09 Thread bob
Change the width and height to wrap_content. On Wednesday, November 7, 2012 4:57:51 AM UTC-6, Filipe Batista wrote: Hi, I have a ProgressBar (indeterminate) inside a LinearLayout, when i open the app in phone with ICS the progressbar spinner keeps the right proportions, but when i open

[android-developers] Re: ProgressBar Dialog and Back button crashes pp

2012-04-11 Thread Tom
I think I have a problem in my final Handler handler = new Handler - method. My progressbar declaration is : progDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER); But the handler dismis the dialog only when: int total = msg.getData().getInt(total);

Re: [android-developers] Re: ProgressBar Dialog and Back button crashes pp

2012-04-11 Thread deb-account
On 11/04/12 09:31, Tom wrote: I think I have a problem in my final Handler handler = new Handler - method. My progressbar declaration is : progDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER); But the handler dismis the dialog only when: int total =

Re: [android-developers] Re: ProgressBar Dialog and Back button crashes pp

2012-04-11 Thread Justin Anderson
If you are using a spinner styled dialog, why are you trying to update its progress with a total? Why don't you have a total? You are the one that controls that... Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Wed, Apr 11, 2012 at 1:52 AM,

[android-developers] Re: ProgressBar in OpenGL

2012-03-01 Thread Yan
Maybe you should move the code that's slow-loading into your onDrawFrame along with some extra conditions something like this: if (continueLoading) { ContinueLoadingPartsHere(); DrawSomeMoreProgressBarHere(); if (loadingPartsDone) { continueLoading = false; } } if

[android-developers] Re: ProgressBar in ActionBar

2011-09-27 Thread Isambert
I have achieved half of the job. I am using MenuItem.setActionView to have my progressDialog. But how to remove it next and go back to my regular button ? -- 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] Re: ProgressBar with moving image. Drawable resource using translate.

2011-01-05 Thread Henrik Lindqvist
Think I've got it, even without the 9-patch hack. Using scale to translate/move a separate bitmap with gravity to prevent scaling the needle itself. Sure at low progress it will be clipped, as the 9-patch would be squashed. But that's easy to compensated for. On Jan 5, 3:57 am, Henrik Lindqvist

[android-developers] Re: ProgressBar with moving image. Drawable resource using translate.

2011-01-04 Thread Henrik Lindqvist
Thanks for the tips. Seems ProgressBar is useless in this case, so I'll probably need to hack my own. The ApiDemos contains a resource for circular progress-bars, \samples \android-8\ApiDemos\rescircular_progress.xml: layer-list xmlns:android=http://schemas.android.com/apk/res/ android item

[android-developers] Re: ProgressBar

2010-01-07 Thread Moto
That would be a seekbar not a progressbar ;) On Jan 7, 6:45 pm, Business Talk roman.businesst...@gmail.com wrote: Is there any interactive progress bar, similar to the music player progress bar? It shows the progress but it also allows to move the cursor back and forth. -- You received this

[android-developers] Re: ProgressBar

2010-01-07 Thread Business Talk
Thanks Moto On Jan 7, 7:09 pm, Moto medicalsou...@gmail.com wrote: That would be a seekbar not a progressbar ;) On Jan 7, 6:45 pm, Business Talk roman.businesst...@gmail.com wrote: Is there any interactive progress bar, similar to the music player progress bar? It shows the progress but

[android-developers] Re: ProgressBar doesn't allow control of visibility in AppWidgetProvider App Widget?

2009-09-25 Thread kenpark
Hej. I do not really get the intent of the class android.widget.RemoteViews. What is its proper use case? Regards. On 10 Aug., 16:50, Craig craig.det...@gmail.com wrote: Thanks Jeff, the work-around works well. On Aug 7, 7:45 pm, Jeff Sharkey jshar...@android.com wrote: Doh, good catch.  

[android-developers] Re: ProgressBar doesn't allow control of visibility in AppWidgetProvider App Widget?

2009-08-10 Thread Craig
Thanks Jeff, the work-around works well. On Aug 7, 7:45 pm, Jeff Sharkey jshar...@android.com wrote: Doh, good catch.  The View.setVisibility() method is marked with the @android.view.RemotableViewMethod annotation, which is what allows it to be called through RemoteViews.  In this

[android-developers] Re: ProgressBar doesn't allow control of visibility in AppWidgetProvider App Widget?

2009-08-07 Thread Jeff Sharkey
Doh, good catch. The View.setVisibility() method is marked with the @android.view.RemotableViewMethod annotation, which is what allows it to be called through RemoteViews. In this case, ProgressBar actually overrides the default View implementation, but without adding that annotation. (This is

[android-developers] Re: ProgressBar to grow from middle

2009-07-07 Thread Mark Murphy
Rohit wrote: Hi, Is there a way to grow the progress bar from the middle and in both directions? Something like below: 0% ++10% ----- ++-- --++-

[android-developers] Re: ProgressBar to grow from middle

2009-07-07 Thread Rohit
Thats what I was thinking too but I was hoping there would be an easier way :( Thanks though... On Jul 7, 3:24 pm, Mark Murphy mmur...@commonsware.com wrote: Rohit wrote: Hi,         Is there a way to grow the progress bar from the middle and in both directions? Something like below:

[android-developers] Re: Progressbar

2009-06-08 Thread Zoltán Kisgyörgy
Have you tried this: http://developer.android.com/guide/topics/ui/dialogs.html#ShowingAProgressBar ?? [?] 2009/6/8 Sukitha Udugamasooriya suk...@gmail.com Hi, Is there a way to display the percentage% of the progress on the bar? Simple write something on the bar in the new SDK? I have

[android-developers] Re: Progressbar

2009-06-08 Thread Desu Vinod Kumar
http://www.helloandroid.com/node/250 have u seen this example with source code it may be helpful for u On Mon, Jun 8, 2009 at 11:28 AM, Sukitha Udugamasooriya suk...@gmail.comwrote: Hi, Is there a way to display the percentage% of the progress on the bar? Simple write something on the bar

[android-developers] Re: ProgressBar / SeekBar Height

2009-03-28 Thread birds fly
hi , I have modify the seekbar size of height, you can read of it that source code res/style.xml, where located in ANDROID_HOME/tools/lib/res/default/values/style.xml What I means,you need to modify the seekbar style and override old style. default style: style name=Widget.SeekBar

[android-developers] Re: ProgressBar / SeekBar Height

2009-03-28 Thread bestpriv...@googlemail.com
Many thanks. Works fine now :-) On 28 Mrz., 12:43, birds fly birdsact...@gmail.com wrote: hi ,       I have modify the seekbar size of height, you can read of it that source code res/style.xml, where located in ANDROID_HOME/tools/lib/res/default/values/style.xml What I means,you need to  

[android-developers] Re: ProgressBar - Emulator not working?

2009-03-23 Thread Marco Nelissen
Try adding this to your xml: style=?android:attr/progressBarStyleHorizontal On Mon, Mar 23, 2009 at 9:50 AM, droozen droozenr...@gmail.com wrote: I just wanted to run a ProgressBar test, as it's my first time using them on the Android. Here's my XML (in a Linear Layout): ProgressBar

[android-developers] Re: ProgressBar - Emulator not working?

2009-03-23 Thread droozen
That worked, thanks. On Mar 23, 12:27 pm, Marco Nelissen marc...@android.com wrote: Try adding this to your xml: style=?android:attr/progressBarStyleHorizontal On Mon, Mar 23, 2009 at 9:50 AM, droozen droozenr...@gmail.com wrote: I just wanted to run a ProgressBar test, as it's my first

[android-developers] Re: ProgressBar in Webview

2009-01-19 Thread A R
I am not sure if I understand correctly but you can keep your webview invissible (while its loading) and make it visible only after your url is loaded (and when you remove progressbar). Check WebViewClient on how to get notified of page load finished. -Amit. On Jan 19, 10:16 am, Chris Chiappone

[android-developers] Re: ProgressBar in Webview

2009-01-18 Thread A R
Did you try FrameLayout? On Jan 17, 9:02 pm, Fred Grott(shareme) fred.gr...@gmail.com wrote: Do you mean load progress rotating image and once the page loads it disappears? On Jan 16, 4:29 pm, Chris Chiappone chiapp...@gmail.com wrote: Is there an easy way to show a indeterminate

[android-developers] Re: ProgressBar in Webview

2009-01-18 Thread Chris Chiappone
Yes, this is what I was trying to achieve. The problem is that its almost like the webview comes up from below the progressbar when the page loads. On Sat, Jan 17, 2009 at 9:02 AM, Fred Grott(shareme) fred.gr...@gmail.comwrote: Do you mean load progress rotating image and once the page loads

[android-developers] Re: ProgressBar in Webview

2009-01-17 Thread Fred Grott(shareme)
Do you mean load progress rotating image and once the page loads it disappears? On Jan 16, 4:29 pm, Chris Chiappone chiapp...@gmail.com wrote: Is there an easy way to show a indeterminate progressBar ontop of a webview.  I can create a progress bar but the webview shows up below it. Thanks

[android-developers] Re: ProgressBar no coming on a ListActivity

2008-09-30 Thread Sudha
I tried //myProgressDialog.show(); //myProgressDialog.setView(getCurrentFocus()); //requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS); // setProgressBarVisibility(true); nothing worked Please help --~--~-~--~~~---~--~~ You received this message because