Questions tagged [android-vertical-seekbar]

A SeekBar is an extension of ProgressBar that adds a draggable thumb

A SeekBar is an extension of ProgressBar that adds a draggable thumb. The user can touch the thumb and drag left or right to set the current progress level or use the arrow keys. Placing focusable widgets to the left or right of a SeekBar is discouraged.

Clients of the SeekBar can attach a SeekBar.OnSeekBarChangeListener to be notified of the user's actions.

Link

29 questions
1
vote
0 answers

Vertical Seek Bar

I am using StartPointSeekBar from https://github.com/vashisthg/StartPointSeekBar and it is working great. But now I need it to go vertical. I have tried several things such as: protected void onDraw(Canvas c) { c.rotate(-90); …
filipst
  • 1,547
  • 1
  • 30
  • 55
0
votes
0 answers

Is there a good way to implement a discrete vertical seekbar in Android Studio?

Simply rotating a horizontal (normal) seekbar with android:rotation="270" makes the appearence rotate, but does not rotate it in the layout and the bounds stay horizontal. I have tried to extend the Seekbar class (Java, shown below) but the position…
0
votes
1 answer

A transparent dot coming on the Vertical SeekBar while seeking down on Android

I have added a Vertical SeekBar in my android application which doesn't show the thumb on the SeekBar. This is working all fine but having a small issue - when I scroll/swipe the SeekBar to the bottom, it starts showing the transparent dot the top…
0
votes
1 answer

Need some assistance for developing a vertical seekbar which starts from the middle and move to both sides. [50 , 0 , 50]

I was developing an Equalizer application and need to create a vertical seekbar which starts from the middle. I searched for some vertical seekbars but the onDraw is designed for seekbars that starts from the bottom and move up. I need to modify the…
0
votes
1 answer

Vertical Rangebar in Android

As you know there is no two thumbs bar in android. How can we build vertical range bar in android? There are some open source projects but all horizontal.
Mucahit
  • 573
  • 1
  • 6
  • 16
0
votes
1 answer

Android SeekBars cropped before rotating

I'm trying to make a vertical mixer-style interface to control different audio sources, using Android SeekBars. I can rotate the SeekBars as many posts describe, and get them into the right position. However, the width of each SeekBar (which we see…
arlomedia
  • 8,534
  • 5
  • 60
  • 108
0
votes
1 answer

Vertical seekbar turns transparent on API25-

I'm using aosp implementation for vertical seekbar and it works just fine on API 26+ but on lower APIs its accent turns transparent (doesn't pick up the app's accent colour), any ideas on what could be causing this issue? The seekbars are used…
0
votes
3 answers

How to add vertical lines above seekbar in android

I am new in android and I have a small goal to achieve. I want to create a seekbar exact like that, I know how to work with normal seekbar but don't have any idea to add those vertical lines above seekbar. can you provide me solution for this?…
Dev
  • 78
  • 1
  • 13
0
votes
1 answer

Custom seek bar don't work correctly

Friends, help me please. I have a custom SeekBar in project. It is not displayed correctly. http://take.ms/NgHW9
0
votes
1 answer

onProgressChanged being run even when there is no progress change

I have an android app with two seekbars, and I've set them up so that the app doesn't respond unless both of them are pressed. My problem is that when they are both pressed down, the method onProgressChanged(SeekBar seekBar, int progress, boolean…
0
votes
4 answers

Implementing a vertical seekbar - How to add a new class in Android Studio?

I'm trying to implement the vertical seekbar described in this SO answer. I understand that when that answer was written, Eclipse was the standard IDE for Android development, and so it was probably trivial to follow these instructions: To…
0
votes
1 answer

Vertical Seekbar popup at thumb. Popup misplace

I am working on a app where I am using both Horizontal and Vertical seekbar with showing popup at thumb location. For horizontal seekbar both the things are fine. But when we rotate seekbar by -90/270 degree, then the popup is not showing on…
DynamicMind
  • 4,240
  • 1
  • 26
  • 43
-2
votes
2 answers

Seekbar min value 100 and max 0 Android

A vertical seekbar has minimum value 0 and maximum value 1000. Is it possible that at the bottom the seekbar min progress is 1000 and when at top level it becomes 0. The current seekbar range…
Dimitri
  • 1,924
  • 9
  • 43
  • 65
-3
votes
1 answer

How to make a vertical range seekbar?

I have a application which needs a vertical range seekbar which has two thumbs for adjusting the position.I have no idea how to make a one. Please help me out.. Similar to this seekbar.
Ravi Parmar
  • 968
  • 11
  • 28
1
2