seekbar

Is it possible to somehow "bind' the dimensions of a ShapeDrawable to that of a View?

Specifically, I'd like to bind the height of a custom thumb for a SeekBar to the height of the SeekBar. Thanks! ...

HTML5 video seeking on iPad

Hello, I have an HTML5 video player with a custom seek bar, that's working great on the iPhone (playing inline) and on the browser. It plays great on the iPad too and the seek bar is updated as the movie plays, but for some reason, I can't seek. All of the values are correct and I'm trying to set: myPlayer.currentTime = XX; Unfortu...

Seekbars and EditTexts

I am working on an application in which I need the user to set an array of 30 values and to make it user friendly and easy to use I have decided to use a series of SeekBars and EditText widgets. I am using eclipse and have used it to set up the layout. I am looking for an efficient way to set up the application to automaticaly update th...

android seekbar drawing problem on orientation change

when the orientation changes, the seekbar drawing is messed up. See voice call and alarm below: ...

How can I change the Android SeekBar Thumb drawable after 'onCreate' method?

Currently I am attempting to change the drawable image of the Thumb of a seekbar in android. In the onCreate() method I am able to effectively change the thumb using the following mSeekBar.setThumb(myDrawable); However, after the onCreate method is called, I attempt to change it again using a different drawable with the same method ...

How Can I Adjust Android SeekBar Sensitivity

I attempted to use a SeekBar for the first time, and I was disappointed with the results. I have an app that needs to use a slider to cover 80 spots. I want the user to be able to move in .5 increments (i.e. 10.5, 11.0). My max range is 40, which is why I doubled it to 80 to account for the decimals. Everything worked, but when I put it...

how to Pan one image over another using a seekbar to control it?

Hi All, I would like to know how I can pan one image over another. I have tried using matrix.postTranslate (below) but it seems to have no effect. Can anyone suggest a method that would work. private void drawMatrix(){ Matrix matrix = new Matrix(); //matrix.postSkew(curSkewX, curSkewY); // matrix.postScale(curScale, curScale); ...

Is it possible to remove thumb in seekbar?

Is it possible to remove thumb in seekbar? how do i change the animation of thumb while selecting it? ...

Use scalable bitmaps for seekbar/progressbar Android.

Hi, I am trying to create a custom look for the seekbar, and I created images for normal/filled and the thumb states. But the problem is that the images are not being scaled by android, instead are just tiled/clipped. How can I ask Android to scale the given images instead of tiling/clipping? ...

android disable seek bar for audio controler

Hi, I used the following seek bar for displacing the progress of my audio. android:padding="7dp" android:id="@+id/SeekBar01" android:layout_width="245dip" android:thumb="@drawable/seekthumb2" android:progressDrawable="@drawable/seekbar1" android:layout_height="fill_parent" android:clickable="false" android:focusable="false" a...

How can I disable the seek bar for audio controller

I'm currently using the following seekbar for showing my audio palying progress, i want to disable thumb movement by user <Seekbar android:padding="7dp" android:id="@+id/SeekBar01" android:layout_width="245dip" android:thumb="@drawable/seekthumb2" android:progressDrawable="@drawable/seekbar1" android:layout_height="fill_parent" android:...