Questions tagged [android-progressbar]

Android's ProgressBar widget displays visual work-in-progress indication to the user. A determinate progress bar displays how far the operation has progressed. An indeterminate progress bar just displays that work is being done.

Android's ProgressBar widget displays visual work-in-progress indication to the user. A determinate progress bar displays how far the operation has progressed. An indeterminate progress bar just displays that work is being done.

Android ProgressBar is often used in a Dialog using ProgressDialog.

ProgressBar has following different styles

1648 questions
0
votes
1 answer

show or hide progress bar in action bar which extends SherlockListFragment

I want to show and hide progress bar in action bar. Here I am extending my class with SherlockListFragment, there is no onCreate method available. I tried this but didn't working. How can I achieve this. Thanks in advance.. Here is my code: package…
Shailendra Madda
  • 20,649
  • 15
  • 100
  • 138
0
votes
1 answer

Custom Progress Bar not working on some devices

EDIT: I have created a progress bar that uses only nine-patch drawables and another that depends on clip drawables as I have posted below,I have posted both the projects on github.Can someone with a Sony device test the projects and tell me which…
vamsiampolu
  • 6,328
  • 19
  • 82
  • 183
0
votes
2 answers

First progressBar in listview doesn't progress

I have a very bad issue. I have a listview with an adapter. public class MediaAdapter extends ArrayAdapter { public MediaAdapter(Context context, Media[] items) { super(context, R.layout.mediaitemlist, items); } /* private view…
Cocorico
  • 1,998
  • 1
  • 22
  • 38
0
votes
1 answer

progress bar when downloading some data from parse.com

I am pretty new in Android so my question may sound very common. I am trying to make appear a progress bar when downloading some data from parse.com and make it disappear when the data has been finished downloading and has been presented in a…
user3111349
  • 23
  • 1
  • 10
0
votes
1 answer

Loading progressbar similar to Play Books/Newsstand

Im using an Intentservice to load data in the background which I then show in a fragment. While its loading I show a ProgressDialog but I would prefer something that looks like the "loadingscreen" the google apps use. Just a blank screen with a…
0
votes
3 answers

How I can make some action on screen even if progress dialog is loading. Android

I am displaying progress dialog box on screen, I can not make any action until the dialog got dismissed. How can I make some action (like Clicking on button) on screen even if progress dialog box is loading. Loading should not stop when I click on…
user2085965
  • 393
  • 2
  • 13
  • 33
0
votes
1 answer

Correct way to update progress bar while reading records from a text file - Android

I'm trying to read large text files in my Application, for which I need to use AsyncTask. I adapt the code I had (which works perfectly) to read small files to work in AsyncTask. The problem that I have is to update the ProgressBar. I'm trying to…
Oscar Méndez
  • 937
  • 2
  • 13
  • 39
0
votes
1 answer

Can't implement Progress Bar in my code

I am trying to think of a way to have Progress Bar or any other working Dialog with loading bar in my code, but I can't find any good code example, they are all too simplistic and don't give you an idea of how to use it when your code is more…
Sartheris Stormhammer
  • 2,534
  • 8
  • 37
  • 81
0
votes
1 answer

Positioning Custom ProgressDialog Android

I have made a transparent custom progress bar.I want to move the progress bar to a certain location on the screen programatically.But every time the custom progress bar get drawn at the middle of the screen. public class CustomProgressBar extends…
0
votes
1 answer

Show horizontal progress bar while app is replicating data with CouchDB

How do I show a horizontal progress bar while my android app is replicating/syncing data with the CouchDB server (both for completed and fully completed)? Any example would be of great help. Thanks in advance.
Android Developer
  • 223
  • 1
  • 2
  • 6
0
votes
0 answers

Android ProgressBar not clearing after disabling its indeterminate feature

I ran into a problem when switching between ProgressBar.setIndeterminate(true) and ProgressBar.setIndeterminate(false). In my code I call the following before starting a longer running task: myv_BottomView.setProgressBarIndeterminate(true); which…
EEALNT
  • 145
  • 1
  • 13
0
votes
1 answer

Android progressbar while fragment transition

Hi everyone i'am trying to set a progressbar while in fragment transition, my first fragment onClick invokes the second, which will do some heavy work before it displays. This heavy work doesn't use asynctask because is a parse from html that is in…
firetrap
  • 1,947
  • 3
  • 24
  • 39
0
votes
2 answers

How I can create this type of textured progress bar "line-diag" (ninepatch?)?

How I can create this type of textured progress bar "line-diag" (ninepatch?)? I have read some threads and I think the solution would be using the images of type 9-patch. But I do not understand how to do it right. Can you explain how I can make…
0
votes
1 answer

Android: Filling a horizontal progress bar with user input

Ok so my program is supposed to help a user keep track of the progress they have made at any particular task. It has an view that will ask a user to input a number, the program has an OnClickListener() that will activate a sequence of…
David Baez
  • 1,208
  • 1
  • 14
  • 26
0
votes
3 answers

Can't put TextView above ProgressBar

I've got a ProgressBar, which is a spinner with a TextView above it, both inside the same relativelayout. These are the ProgressBar's and TextView's properties:
Xander
  • 5,487
  • 14
  • 49
  • 77