Tagged Questions
The seekbar tag has no wiki summary.
13
votes
2answers
6k views
Slider control in Android…is SeekBar really my best/only option?
I'm using SeekBar as a slider because I can't find anything else, but I have to do so much hacky work because it doesn't allow me to set a minimum value or go in between ints. So, any time I need a ...
12
votes
4answers
3k views
HTML5 video seeking on iPad
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 ...
7
votes
3answers
13k views
Modifying the Android seekbar widget to operate vertically
I'm trying to get a vertical seekbar going with the emulator, but I'm
sort of stuck. I can get the seekbar to display the way I want it to,
and I can get the progress to do what I want, and I can ...
6
votes
3answers
451 views
Horizontal ProgressBar: Toggling between determinate and indeterminate
I'm trying to toggle a SeekBar between the the two modes to display the state of streaming media.
I've established that the correct graphics show when defining the android:indeterminate tag in XML:
...
6
votes
4answers
2k views
Need <working> vertical SeekBar!
I've implemented the commonly-pointed-to VerticalSeekBar post here. As it is, the SeekBar operates a little quirky. Here is my slightly adapted onTouchEvent() from that example:
public boolean ...
5
votes
4answers
1k views
Android Seekbar with two thumbs
Variations of this question can be found all over the internet but not an answer.
I want a seekbar with two-thumb range selection. I'm willing to program this myself but I lack experience with ...
4
votes
1answer
422 views
Making A Custom Skinny ProgressBar / Seekbar
At a high level, I have done several types of progress bar styles, but they are all ugly when I have attempted to make them skinny.
I am looking for a jump start tutorial or layout that will give a ...
4
votes
2answers
303 views
Animate seekbar progress
I have a screen with 4 seek bars ( As shown in the image below) . If the user moves B,C or D I calculate the average of the three and setProgress of A to the average. That was the easy part . What I ...
4
votes
2answers
3k views
Android SeekBar thumb gets clipped/cut off
Re-worded question: When using a custom thumb drawable with a SeekBar view, the thumb drawable is clipped at the left and right edges of the view.
hi created a custom music player.But when i play the ...
3
votes
0answers
167 views
Android SeekBar mark where are the values
I have SeekBar with 3 value (left, on center and right) and I will like to put some mark where progess level are, e.g. on center to put vertical line over bar or something like that.
Is this possible ...
3
votes
1answer
840 views
Android seekbar clipped thumb
I ran into some weird problem..I implemented a seekbar with custom thumb..and when I ran my app on HTC Desire, it all works fine..but, when I ran it on Samsung Galaxy, the thumb becomes clipped!
Here ...
3
votes
1answer
713 views
Rectangular edges for custom SeekBar
I have customize the SeekBar using a LayeredDrawable, The drawable works fine, but the drawable used as a background becomes rounded at the corners (Both the corner, here only the right end is shown. ...
3
votes
3answers
4k views
Discrete seekbar in Android app?
i would like to create a seekbar for an Android app that allows the user to select a value between -5 and 5 (which maps to "strongly disagree" and "strongly agree"). how do i make a seekbar with ...
3
votes
4answers
1k views
Android Remove SeekBar Background
Is there a way I can remove the background bar image in the SeekBar android widget?
I just want it to show a slider with no progress bar behind it.
Any help?
2
votes
1answer
115 views
How to change seek bar progress colour according to its progress?
I want to create a custom seekbar, whose progress bar's colour change between red and blue as the user changes the progress of the bar.
I have tried it but its only changing the background colour not ...
2
votes
2answers
236 views
SeekBar Volume hide slider on set max volume
i have a seekbar defined in xml in this way:
.
.
.
<SeekBar ...
2
votes
2answers
198 views
How to use a Seekbar in android as a seekBar as well as a progressBar simultaneously?
I intend to write a custom media controller for my app. I was planning to use seekbar to do both seeking and showing progress. Trying to implement this.
Does anyone have such implementation or am I ...
2
votes
2answers
265 views
Custom seekbar getting its edges cut [closed]
Possible Duplicate:
Android SeekBar thumb gets clipped/cut off
I was doing a custom seekbar, following this tutorial: ...
2
votes
1answer
145 views
SeekBar minHeight and maxHeight by code
Does anybody know how to set the minimum and the maximum SeekBar's height by code? I want to reproduce the same behavior as the following XML's excerpt:
<SeekBar android:minHeight="6dip"
...
2
votes
1answer
192 views
Android dev - Issue with using SeekBar
I'm trying to implement a SeekBar in a simple flashlight app (that I'm learning on) and cannot understand why the app keeps crashing when I set the OnSeekBarChangeListener to my SeekBar. As soon as a ...
2
votes
1answer
189 views
Audio seekBar Thread Problem?
Originally, I had a MediaPlayer mPlayers to play/pause/stop my Audio file. Now, I'm trying to add a seek bar for my media. I tried using Threads and this is what I came up with:
In onCreate() :
...
2
votes
2answers
246 views
Creating a SeekBar position popup in Android
I have a SeekBar in my application, and I want it to behave so that when the user is dragging the 'thumb', a Popup appears above the thumb (and follows it as the thumb is dragged), and the Popup ...
2
votes
2answers
885 views
SeekBar programmatically
I am creating a SeekBar programmatically like this :
SeekBar seekBar = new SeekBar(this);
seekBar.setMax(15);
seekBar.setIndeterminate(true);
seekBar.setMinimumWidth(200);
...
2
votes
0answers
365 views
HTML5 video streaming / seeking
I'm trying to serve videos which are being transcoded on-the-fly. Unfortunately, this means that seeking does not work. I'm assuming that this is because the browser doesn't know how long the video is ...
2
votes
1answer
373 views
Android with SeekBar - Prevent 'thumb' from moving when touching SeekBar to drag/scroll screen
I've got an android app with a TableLayout with each row having a SeekBar and a ToggleButton. The rows go beyond the visible range of the screen so it's scrollable. When I touch and drag to scroll the ...
2
votes
1answer
484 views
Double thumb on a single seekbar in Android 2.1
Is it possible to have two thumbs on a single seekbar in android to control the boundary values for a range? Thanks in advance.
Regards,
Sayani
2
votes
2answers
535 views
Use scalable bitmaps for seekbar/progressbar Android
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 ...
2
votes
2answers
2k views
Android ProgressBar.setProgressDrawable only works once?
In a color picker, I have 3 SeekBars for Hue, Saturation, and Value. Calling setProgressDrawable on these SeekBars only works once -- at initialization from onCreate. When the user updates the Hue ...
2
votes
1answer
2k views
Android seekbar widget: no vertical orientation?
I can't believe there is no way to change the orientation of the SeekBar widget. I've been perusing this widget's properties and I can't find anything that allows me to change its orientation to ...
2
votes
2answers
159 views
How to handle back and forward buttons in the hildon.Seekbar?
The hildon.Seekbar widget consists of a scale widget and two buttons. What signals does the widget send when the buttons are clicked or how could I find out? Is there a way to monitor all ...
1
vote
2answers
64 views
Android Media Player Seek bar not updating on start after stop
I'm having a hard time working with this.
I have a Media player, and I can play, pause, stop, play again after pause, stop... whatever.
Now I wanted to have a SeekBar to give a visual component. My ...
1
vote
1answer
65 views
Multiple SeekBars listener
I have multiple seekbar on the same view :
barheures = (SeekBar)findViewById(R.id.barheures); // make seekbar object
barheures.setOnSeekBarChangeListener(this); // set seekbar listener.
...
1
vote
0answers
36 views
How can I get this code implemented with my ActionBar Tab setup?
I recently changed my application to have the action bar tabs to switch between Fragments. I coding I have done for the first fragment which is on the main activity is working fine, but on the second ...
1
vote
1answer
96 views
Zoom In/Out effect in ImageView using seekbar
hello i having one image within ImageView i want to make it Zoom In/Out using SeekBar without changing height width of ImageView.
when i move SeekBar to right side image would be Zoom In and while ...
1
vote
1answer
55 views
Set a SeekBarPreference in the preferencemenu and not using dialog
I'm creating preference menu and trying to show the seekbar in the preference menu and not by showing a dialogbox.
Do I have to make it through a new xml layout file and new Preference class?
It's ...
1
vote
2answers
49 views
Android: Adjust a widget's parameters from outside the activity
My app starts with a TabActivity that has three activities associated to it, one for each tab.
I then have a singleton class that holds all the values that can be manipulated via these tabs, ...
1
vote
0answers
48 views
Seekbar customize without repetition
I have the Seekbar that I customized but the background is going to do the repetition and I want to remove it.
This is my file where I am going to customize the SeekBar:
<item ...
1
vote
0answers
95 views
Setting new thumb in SeekBar removes progress background
I would like to know, is this behaviour normal? Because I didn't find any document where describes that when you set a new drawable of SeekBar's thumb, you should also set a new drawable of progress. ...
1
vote
2answers
476 views
SeekBar customization - how to properly position custom “thumb” image?
I have customised my SeekBar - I use a custom image as the background, and a custom image as the thumb (How to create custom layout for seekbar in android? & How to customize the look of a seekbar ...
1
vote
1answer
156 views
SeekBar's thumb only appears when touched
I want to have a SeekBar with a thumb that appears as the user interacts with it (by dragging it to the desired location) and disappears after the interaction.
Today my SeekBar looks like this:
...
1
vote
2answers
119 views
Android SeekBar Flipped Horizontally
With the Android SeekBar, you can normally drag the thumb to the left or to the right and the yellow progress color is to the left of the thumb. I want the exact opposite, essentially flipping the ...
1
vote
2answers
285 views
How to update SeekBar after android rotation?
I use this media player but when I rotate the emulator (Ctrl+F11) the startPlayProgressUpdater() doesn't work properly.
How can I update seekbar after rotation?
1
vote
1answer
152 views
How to make SeekBar thumb looks like youtube android app's
I try to put SeekBar thumb drawable outside background. I want to make it seems like this:
This is screenshot from Youtube android client.
Can somebody help me?
1
vote
1answer
164 views
Android SeekBar doesn't refresh after dynamically setting max value with setMax
I am using the stock SeekBar component to navigate through a set of ViewPagers and it's working quite fine. Only problem is that when the data changes, I have to dynamically change the max value of ...
1
vote
0answers
163 views
Seekbar OnSeekBarChangeListener not called for changes with DPAD left and right?
I have SeekBar widget, trying to control it by dpad keys - change position by left and right.
I can focus it, pressing dpad left/right changes position (correctly, as set by
...
1
vote
1answer
359 views
How do I put a seek bar in an alert dialog?
I want an alert dialog box to pop up after I click a button to have a seek bar so that the person can change the value from 1-48. I've made a custom xml that has a seek bar and two text view and I ...
1
vote
1answer
292 views
How to make seek bar for AVPlayer
Im making a iPhone app and want to make a seek bar for a AVPlayer. I want to make it with a UISlider. How can I do this?
1
vote
1answer
148 views
Creating a listener onRotate()
I've been trying to find a listener that can execute seekmark.markPlace(). The function takes in the dimensions and padding for a seekBar defined in my layout. When I call the function from onCreate ...
1
vote
1answer
245 views
Global seek bar MediaElement wp7
How to create global seek bar for audio player in WP7?I want create something like this
1
vote
0answers
96 views
android how to stream a song url from middle using SeekBar
In my app MediaPlayer is there and from an url i am playing a song using,
seekBar.setProgress(0);
seekBar.setSecondaryProgress(0);
every time streaming starts from starting and then song play.Here ...