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
5
votes
3 answers

Vertical seekbar showing as a horizontal one in Android Studio

I want to achieve a vertical (upright) seekbar to control volume. Currently it shows as a horizontal one. This image below is similar to the layout which I want to achieve. After clicking the sound button, the seekbar to control volume should be…
4
votes
1 answer

Why OnSeekBarChangeListener always returns boolean variable false?

I have one Vertical Seekbar in my android project. Vertical Seekbar is initialized in onCreate Method: verticalSeekBar1 = (VerticalSeekBar) findViewById(R.id.verticalSeekbar1); verticalSeekBar1.setOnSeekBarChangeListener(Listener1); And I have to…
AkhilGite
  • 400
  • 4
  • 17
3
votes
3 answers

Android XML: Vertical Seekbar in Android with match parent layout isn't working properly

I have seen a different post related to this topic already before posting this question so I can definitely say that this question is not a duplicate. I have a different problem which I couldn't fix or find a solution to it. Problem: I have created…
3
votes
1 answer

VerticalSeekbar not working smoothly in horizontal scroll-view

I am trying to implement a vertical seekbar in a horizontal scroll-view, but the seekbar is not working smoothly in it. This is my class for vertical sekkbar .....Source from stackoverflow only . public class VerticalSeekBar extends SeekBar { …
2
votes
2 answers

How can we create the below UI as shown in Native Android

I have to implement the below seek bar as shown below. The left side round thumb icon can be dragged and can be placed to each corresponding numbers. The number's remain constant, only the thumb icon can be dragged to each position using finger. How…
I'm Coder
  • 125
  • 2
  • 13
1
vote
1 answer

Android Seekbar values not going to negative on some devices

I am using multiple vertical seekbars in my Android application using android:rotation= "270". I have set the min and max of these seekbars let's say -50 to 50. Now the seekbars and working fine on all of my devices and emulator but it isn't going…
1
vote
0 answers

How to apply Vertical progress Drawable for a vertical seekbar

I have created a vertical seek bar by adding android:rotation="270" in seekbar. But i have been shared with a progress drawable which is vertical in position. If i am applying this vertical image as progress drawable , seekbar is not looking…
1
vote
3 answers

Vertical seek-bar not showing Progress colour on run-time in Android

Output I'm getting Desired Output I’m New to Android Application development I’m working on one project, in it I need to show vertical seekbar I have used below code in XML and in JAVA . I want the right side output but I’m getting left side output…
1
vote
1 answer

On Drage Event Seekbar Reset with 0

I've implemented a list of seekbars. According to my functionality, I want the sum of all seekbar not to exceed 100% for example if I drag first seekbar to 60% the next one will not exceed 40%. I have made it work but whenever I drag the first one…
3iL
  • 2,146
  • 2
  • 23
  • 47
1
vote
0 answers

Vertical SeekBar looks strange on some devices

I am trying to get vertical SeekBar to work on all devices. On some it is showing properly: but on others not : , . I made vertical SeekBar with this trick:
1
vote
1 answer

Set width SeekBar Android

I'm using VerticalSeekBar and I would like to set the width. With the term width I mean the width of the seekbarbar progress part. This is my xml
Davide
  • 127
  • 1
  • 2
  • 12
1
vote
1 answer

Vertical Seekbar Floating text Issue

I have a view with multiple vertical seekbar. I am drawing text on thumb and I want to display floating text-box above thumb while progress is changing. We are able to display the text on top of thumb which floats while progress changes.…
1
vote
0 answers

How can add multiple color in Android circular seek bar Android

How can we set multiple colors in android circular seek bar. I need to add three colors with different percentage at run time. Please suggest
1
vote
1 answer

MotionEvent.ACTION_UP event is fired twice with seekbar

The onStopTrackingTouch event is fired twice and that's a problem cause I just need to make a getRequest. Here is my code: VerticalSeekbar.java public boolean onTouchEvent(MotionEvent event) { if (!isEnabled()) { return false; } switch…
lulu666
  • 99
  • 1
  • 12
1
vote
1 answer

Can't update vertical seekbar programmatically (Without touching it)

I have been stuck on this problem since a long time. I left it then came back to it but so far I haven't found a working solution. Problem is simple, I have a vertical seekbar and I want to update it programmatically without touching it, but it…
varunkr
  • 5,364
  • 11
  • 50
  • 99
1
2