Progressbar displays a bar to the user representing how far the operation has progressed. The application can change the amount of progress as it moves forward.

learn more… | top users | synonyms

0
votes
1answer
35 views

Android Progress bar force close apps

I am trying to move a second progress bar based on calculation performed from the progress bar in motion by finger but i get a force close error. /* * Seekbar Mensualite */ ...
0
votes
1answer
33 views

Position thumb at the bottom of seekbar android

I am trying to make the seekbar below appear like this i use the following xml attribute with minheight and maxheight but the thumb is not moving to bottom. The minHeight and maxHeight only ...
0
votes
0answers
26 views

Android progressbar change thickness on ICS

I am trying to create a custom horizontal progress bar so that I can make the progress bar slightly thicker then the default control. I started by locating the default "progress_horizontal" in the res ...
0
votes
0answers
11 views

Update ActionItem after configuration change

I have a Refresh ActionItem displayed in an Activity and inside that activity there exist a Fragment that uses loaders to load some data from the servers . Now when the user press the refresh button I ...
1
vote
1answer
36 views

listview item's view returns to original state after scroll the view off the screen

I have button in listview item and when it's clicked horizontal progressbar start loading and when it is done loading two button should appear in that item in listview. While progressbar downloading ...
0
votes
2answers
41 views

Getting calculated width of a button with Java (returns -2?)

I want to set the width and height of a progress circle to the height of the item next to it, a button. In the end I want to have a circle with equal height and width, that occupies the total height ...
0
votes
0answers
29 views

Proper Way to show and hide the progress indicator in the Action Bar

I am new to using progress bar indeterminate in actionbar. I am able to show and hide the progress bar. I call the following in a fragment to do that ...
2
votes
2answers
63 views

SeekBar Issue Android

I want to achieve this: At this point in time i am at My problem is i want to remove the space between the "montant demande" and the seekbar. This is not due to top margin or padding because i have ...
2
votes
3answers
78 views

Add a Space after 3 characters

I have a seekbar which set values from 1500 to 48500 when on progress to an editText. I want to add a space after ever 3 characters on progress changed. for example 1500 becomes 1 500, 1 600, 30 000, ...
0
votes
0answers
34 views

Progressbar - OnDraw - drawBitmap

I am trying create custom progressbar and m trying to put a slider at the end part of the progress initially. below is the code for the same public class DoubleSlider extends ProgressBar { ...
2
votes
1answer
46 views

Custom ProgressBar With Thumb Android

What is the best way to achieve the progressbar with the thumb found on my dropbox . The thumb is a picture. I tried it using two progressbars, one progressbar without thumb and the second i set the ...
0
votes
1answer
26 views

use progressbar to indicate in the course of downloading image

The following is my layout: <FrameLayout android:layout_width="fill_parent" android:layout_height="fill_parent" > <ProgressBar ...
0
votes
1answer
43 views

No data available listview

I ran into problem with creating listview in my android app. This is my code: public class MainActivity extends ListActivity { private SimpleAdapter emAdapter; @Override protected void ...
0
votes
2answers
58 views

WebView appears white while progressbar loads

I have a ProgressBar that is shown when a WebView is loading. I'd like the ProgressBar to be shown with a small size, while the background is black. Then I can dismiss the progress bar when the ...
0
votes
1answer
61 views

How to implement progressbar using AsyncTask in list fragment?

I want to display progressbar before loading list like following image. my class extended SherlockListFragment with AsyncTask. I goggled lot but not got suitable information for implementing ...
1
vote
2answers
63 views

Android Progress Bar not working for me

Progress bar is not working for me. I am try to show some details in Progress. But I can't, What I did wrongly? Please help me. Activity Filename - MainActivity.java package ...
0
votes
1answer
22 views

Android Horizontal progresBar progress stops in the middle

I'm a "fresh" Android developer and i tried the horizontal ProgressBar. I have a little issue with it, progress stops in the middle and does not continue till the end of the bar. Can you help me ...
0
votes
0answers
32 views

The white layer switch to ProgressBar before open the application in android

I am new to android development. I want to develop a dialog with a progressbar in my application. When i open my app we should appear with the progressbar, showing that the progress is going on before ...
0
votes
2answers
50 views

ProgressBar just wont show up and show any kind of progress

I have been trying for a while now, Have looked at a few SO posts, and got to this stage. I am sure I am very close to getting it working, but am missing something very basic. Code Snippets of the ...
0
votes
1answer
44 views

Constant value android ProgressBar without thread and handlers

I want to implement constant value android ProgressBar without use thread and handlers. Whenever I search related examples it uses thread and handlers, and without use of thread, handlers OR AsyncTask ...
-4
votes
2answers
64 views

Setting progress on progress bar programatically

when my progress bar starts at 0, I want to set progress for every second until it reach 100%. How can this be done. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" ...
0
votes
1answer
44 views

ProgressDialog and AsyncTask at abnormal behavior fails

I have a AsyncTasc which turns of ProgressDialog, all works great, but after some time of abnormal behavior app fails. I know, that user will never behave so. But for good testing is necessary to try ...
0
votes
3answers
127 views

Full size horizontal progressbar in layout when running Android 2.x

The following is a very simplified layout for a list view item that works as expected running on multiple different android 4.x devices but not on android 2.3 (device and emulator). Expected: The ...
0
votes
1answer
196 views

How to resize drawable items(images) in progress bar when doing custom animation?

I have a list view, which contains an icon, a title and a subtitle. My boss asks me that he wants to change that icon into something animation. When he mean animation, it is just display three images ...
0
votes
0answers
18 views

How can I get TalkBack to read the Android progressBar progress?

I am trying to get TalkBack to read the progress on the progress bar without much luck. Any ideas on how I can get that information so that TalkBack can say it. thx public class MainActivity ...
0
votes
0answers
48 views

ask progress dialog android

i want to have progress dialog while android searching my location (google map).. so i put this in my code final ProgressDialog myPd_ring=ProgressDialog.show(LokasiEke.this, "Please wait", "Loading ...
0
votes
1answer
42 views

showing Progressbar when service is active

I have a service which starts from a broadcast and will run and import the vcards . I would like to show a progressbar if the service is still running when the user opens the app which has this ...
0
votes
2answers
137 views

Android: how to add Progressbar to BitmapWorkerTask?

Here is my BitmapWorkerTask to load image to a ViewPager. I'm trying to add a Horizontal ProgressBar to each page for better UX showing the progress of image's loading. (I've already been using a ...
0
votes
1answer
49 views

How to cancel Asynch task in below case

Please dont downvote considering its repeated question. I have already read all questions to related to cancelling asynch task Basicaly I hav three function which execute three different queries and ...
0
votes
0answers
68 views

FindViewById returning null (ProgressBar)

I searched a lot on StackOverflow and, in several comments is recommended to clean the project to solve this issue, the problem ocours in asynctask class inside Adapter, so: removed the project from ...
1
vote
2answers
170 views

ActionBar setProgressBarIndeterminateVisibility(false) is not working on android 2.3

The setProgressBarIndeterminateVisibility(false) is not working for 2.3 android. I'm using the code below.The progress bar is show always and is not hidden. The same code is working on android 4.x ...
0
votes
2answers
93 views

Android ActionBarSherlock displays ProgressBarIndeterminate in Fragment (not FragmentActivity)

How do I display ProgressBarIndeterminate (or use these) requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS); setSupportProgressBarIndeterminateVisibility(true); in a ...
1
vote
0answers
173 views

Thin blue progress bar

I'm trying to create a thin, blue progress bar, similar to this: I'm not that good with Drawables, but what I have changes the ProgressBar to green, but I'm not sure how to make it thin and blue: ...
0
votes
1answer
74 views

Switching between ActionBar.Tabs issue

I have implemented application which downloads data from web and then shows it in two ActionBar.Tabs. I have one issue with it. If I switch from one tab to other one, application starts another ...
0
votes
1answer
83 views

I want to show Progress Bar while Sending the image

I want to send the image through socket and while the sending process going on the progress bar must be displayed and it should be updating when the image is being sending but when i tried this code ...
1
vote
2answers
687 views

ProgressDialog spinning circle

I want to implement ProgressDialog like this one, without additional frame.: But I'm getting this one. How could I change that? Here is my code for ProgressDialog. Thanks in advance private ...
1
vote
1answer
57 views

I want to implement progressbar while sending image

I want to send the image through socket and while the sending process going on the progress bar must be displayed and it should be updating when the image is being sending but when i tried this code ...
1
vote
1answer
331 views

when don't keep activities selected on Setting , progress dialog is not dismissing

when "don't keep activities" is selected on Setting's Developer Options progress dialog is not dismissing. Actually, I am displaying the Progerss bar,for initialize the Application, When I am going to ...
0
votes
2answers
378 views

How to Show download progress in progress bar in Android?

I am using .net web services and I am able to download the file in sd card, But I want to show progress bar when particular file start download and complete and then I want to show options like view ...
0
votes
1answer
41 views

Fragments with header and download content

my first question here... so sorry for duplicates, but i didn't find an answer at all =( I'm trying to create an app with 3 pages. Main page - list of videos Bookmark page - list with all videos ...
0
votes
0answers
31 views

how to add ProgressBar for writing byte[] to FileOutputStream on android?

I want to add a ProgressBar for this action: try { mFile = (File) File.createTempFile("mFile_Temp", ".mp3"); FileOutputStream fileOutputStream = (FileOutputStream) new FileOutputStream(mFile, ...
0
votes
2answers
65 views

Progressbar with two colours

I have an application with questions and want to show a progress bar to show how many questions that are left/answered. I would like to have the colour of the progress bar green if the question was ...
1
vote
1answer
77 views

Showing progress with a RatingBar

I got this tracker screen that tracks users days of working out and workout sets completed. I would like to add ProgressBar or RatingBar that displays some sort of progress/rating by increase of my ...
0
votes
2answers
66 views

change progress bar into double

PROGRESS BAR: ProgressBar pb = (ProgressBar) findViewById(R.id.progressbar); pb.setProgress(0); int k = (int)max; pb.setMax(k); int j = (int)(cost); pb.setProgress(j); this code for a progress bar ...
1
vote
1answer
61 views

progressbar activity forces close

I am new to android and trying out some tutorials. I came across the simple tutorial of handling progress bar. My minimum sdk is 11. Here is what I have tried and get the activity to forces close ...
2
votes
1answer
77 views

How do I update a ProgressBar using a Handler?

I'm new to Android and I'm trying to work through a tutorial on using a ProgressBar in conjunction with a Handler. Just a note, I am targeting API 11. Here is my code with the errors I am getting ...
-5
votes
3answers
549 views

How to customize progress bar(spinner) in android [closed]

I have a progress bar(Spinner) which I want to customize by changing the image, color etc. I also want to change the background and color of font.
0
votes
0answers
29 views

Android Dialog trying to replicate its behavior

In Android, when a Dialog is being shown while an AsyncTask is doing stuff in the background, all actions/buttons press are 'stalling' until onPostExecute() the dialog is dismissed, unless the dialog ...
0
votes
2answers
217 views

My ProgressBar won't show while loading my WebView, why?

I have created a WebViewActivity extending Activity and showing a WebView inside of my app instead of redirecting to the browser. So I tried to use AsyncTask to show my ProgressBar while the view is ...
2
votes
2answers
968 views

Circle progressbar

I want to create Circle progressbar like this image below I don't know how the method to create that progressbar. And i don't know what assets should be prepared.

1 2 3 4 5 7