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

Android send file between two phones using socket and progress bar

i want to make an application for transfer files using wifi direct, but my send and receiver progress bar won't update my sender public void Server () { new Thread(new Runnable() { @Override public void run() { …
0
votes
1 answer

How to create a custom progress bar with attached button on it with scrolling functionality in android

I have to implement a progress bar as given in image. It should work on change the position of button over it. Here i need to change the brightness of image by this progress bar. If user move that button to left then image brightness should go to…
Tapesh
  • 372
  • 1
  • 6
  • 17
0
votes
1 answer

Change the image of the progress bar in android

I am the beginner to the android. I want to change the progress bar of my custom How to change image of the progress bar.Please help me.Thanks in advance...
0
votes
1 answer

How to cross-fadeing image in Android

Basically, I have images that I'd like to to update them sequentially into the same view to create custom ProgressBar. I found Tumblr to do just that with their ProgressBar(ImageView?). Here I put the animation side-by-side to show how the image…
0
votes
2 answers

how to insert a progress bar into my apps in android

I am new to the android.Here I am create the apps such as read the phone contacts and stored into the csv file format file .It takes a long time to read contacts..In mean time i am need to use the progress bar until the file is writing the contacts…
0
votes
2 answers

android create custom progressbar like that

i want to create a progressbar in android like that image i try to use but i think…
Pham Hong Phong
  • 145
  • 2
  • 10
0
votes
3 answers

Center a ProgressBar in a Custom Dialog

I have a custom dialog (inherited from android.app.Dialog) with no title or border. To this dialog I add a normal ProgressBar, and would like to center it in the dialog. The dialog itself has a background image that stretches for the full screen.…
Rajath
  • 11,787
  • 7
  • 48
  • 62
0
votes
1 answer

ProgressBar does not reset after audio is done

My ProgressBar does not reset after audio is done. It reset after some audio's but not others not sure why. Also would like to make pause icon change to play when audio is done if anyone can help out with that to, that will be great! Heres code: …
0
votes
3 answers

My android app does not show progress bar

In my app I am retrieving some data from URL so therefor, I implemented Progress bar in the app by using AsyncTask but the app neither shows the progress bar and nor shows my data. If I call loadDataFromURL() method inside onCreate() method then my…
user2391890
  • 639
  • 1
  • 8
  • 15
0
votes
1 answer

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 */ seekbar_mensualite.setOnSeekBarChangeListener(new…
Dimitri
  • 677
  • 3
  • 19
  • 46
0
votes
2 answers

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 of the search button - if there's an easier way to…
user1544337
0
votes
2 answers

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 not set any top/bottom margin or padding. …
Dimitri
  • 677
  • 3
  • 19
  • 46
0
votes
1 answer

use progressbar to indicate in the course of downloading image

The following is my layout:
Fihop
  • 3,127
  • 9
  • 42
  • 65
0
votes
1 answer

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 onCreate(Bundle savedInstanceState) { …
0
votes
1 answer

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 please? this is my code progress=0; mProgress =…
1 2 3
99
100