seekbar Questions

7

Solved

I have a SeekBar that will change the progress when I require it to, but I don't want the user to be able to change it manually. I tried to set the SeekBar as this: <SeekBar android:id="@+id/...
Joyajoyan asked 29/4, 2013 at 16:59

10

Solved

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 onT...
Plexus asked 3/2, 2011 at 21:56

19

Solved

Can a SeekBar be vertical? I am not very good at UI design, so how can I make the SeekBar more beautiful, please give me some templates and examples.
Forde asked 26/7, 2010 at 9:34

6

I am having trouble with Android seekbar there seems to be a default padding for the seekbar view and I cant seem to remove it, I tried setting padding to "0dp" and tried setting margin to "-10dp" ...
Onward asked 5/6, 2016 at 17:1

9

Solved

I made an equalizer to go with my app but I am not sure how I can change the seekbar's thumb and progress color. It seems to be pink by default and that doesn't fit my app's aesthetics. SeekBar s...
Naker asked 26/7, 2017 at 14:0

3

I'm trying to implement a slider for temperature, which can go from negative to positive values. I have found many examples that have sliders that go from left to right, but I have not found one wh...
Unscramble asked 5/7, 2022 at 9:33

4

Solved

I have a customized Android seekbar like this, and the positions where it can move to. And it starts from the middle: I want to move the slider first and then check if it's saved. I have a metho...
Fishwife asked 4/3, 2016 at 15:28

3

Solved

I'm trying to style a seekbar/slider like the one labeled Discrete Slider - Click (that has the little tick mark indicators) in the Material Design Guidelines. I can't figure out the magical inca...

4

Solved

I need to place "start point" in center of seek bar. How can i do like this?
Tier asked 1/7, 2013 at 23:12

10

I want the SeekBar progress to change whenever I click a button. Using setProgress() works only for initial value. It throws an error if I use it after some changes.
Elastance asked 20/3, 2012 at 18:37

7

Solved

when I update android support lib from 23.0.1 to 23.1.0, I find the SeekBar is not full width any more. this is the test XML file: <?xml version="1.0" encoding="utf-8"?> <LinearLayout x...
Gaspard asked 2/11, 2015 at 8:54

3

I'm noticing that when changing my SeekBar's progressBackgroundTint attribute, it gets completely ignored and has no effect. It doesn't matter what color I set it to; it always shows as gray on my ...
Charters asked 2/11, 2015 at 20:40

6

Solved

I need to prevent seekbar from user inputs in special cases. If I use setEnabled(false) it becomes gray instead of white. Is there any method to disable seekbar without dimming or set another draw...
Roo asked 23/1, 2013 at 14:15

2

Solved

I have a question concerning seekbars. I tried several things but nothing helped. I want to change the height of the seekbar, but not the complete seekbar, only the bar where you scroll over with y...
Pichardo asked 22/9, 2011 at 7:45

4

I have a custom control extending SeekBar, in which I have overridden onInitializeAccessibilityNodeInfo as below: @Override public void onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo info...
Inadvertence asked 3/8, 2016 at 9:50

3

Solved

I want to use a SeekBar (i.e. old school Java Slider) into a color gradient picker. I have seen some examples like this but they all require making new classes and such. There has got to be a way t...
Crummy asked 3/12, 2010 at 5:32

3

Solved

The Seekbars got that blue progress indicator. In my case I just want to show a percentage progress in in a TextView, so I don't need it. How can I hide the blue indicator for the Seekbar progress...
Tee asked 17/2, 2015 at 17:32

4

does anyone know about the seekbar function on notifications in android 10? I can't seem to get the position indicator to show the current position. the bar is just blank but I can seek the media ...
Leaves asked 29/12, 2019 at 5:4

7

Solved

So I'm trying to dynamically change the opacity of a TextView in my android app. I have a seekbar and as I slide the thumb to the right, the TextView I have layered under it should start becoming t...
Impassion asked 12/1, 2012 at 4:48

3

Seek is not progressing. All seekbar comes to zero but textView shows value properly.. choosePreset.setOnClickListener(new OnClickListener() { @Override public void onClick(View arg0) { Layou...
Wardrobe asked 10/2, 2015 at 13:1

8

Solved

I am building an android application where the user select the a maximum value by seekbar. I need another button on the same seekbar so that user can select maximum and minimum value from a partic...
Blackamoor asked 10/11, 2014 at 4:0

3

I am working with a SeekBar that works perfectly fine. But I want to increase the height of the Progress bar, as the native height is not as high. So how can I change the height of the progr...
Bib asked 13/5, 2013 at 7:8

7

Here is a picture of what I want to accomplish, where there is no progress color (transparent), with a solid grey background bar: I tried android:progressTint="#00000000" But that sets the wh...
Antiphon asked 28/10, 2015 at 0:38

11

Solved

I would like to have this seekbar in my Android project : This is my seekbar : <SeekBar android:id="@+id/seekBar_luminosite" android:layout_width="@dimen/seekbar_width" android:layout_heig...
Gastrectomy asked 17/1, 2017 at 9:15

15

Solved

I have a seekbar and trying to set the value from 60 to 180 for one and 40 to 190 for the second one in step of 1. sb1 = (SeekBar) findViewById(R.id.progresss); sb1.setOnSeekBarChangeListener(new...
Forgiving asked 24/12, 2013 at 13:41

© 2022 - 2024 — McMap. All rights reserved.