Questions tagged [rangeseekbar]

19 questions
9
votes
1 answer

How to set focus on Thumb for Range Seek Bar in Accessibility Mode?

I have a custom Range Seek Bar which has 2 custom thumbs (Max and Min) for setting the range of a seekbar. Everything's working fine as expected but as I go in accessibility mode, the focus comes in the range seekbar which is the device default…
mike20132013
  • 5,357
  • 3
  • 31
  • 41
6
votes
2 answers

Seekbar where I can change both min max value with 2 thumbs

I want to have a thumb for both min and max for my seekbar. You should be able to drag both thumbs independently.
3
votes
0 answers

Use RangeSeekBar to play a section of the audio between the two thumbs

So, what I am trying to do is to play a portion or section of the audio between the two thumbs- min and max of the rangeSeekBar. I have used the below library to achieve this feature. https://github.com/YahooArchive/android-range-seek-bar With some…
Ron Daulagupu
  • 423
  • 6
  • 18
2
votes
2 answers

Android Range Seekbar with two different thumbs

I want a range seekbar with two different thumb range selections. I'm using this library but there is not an option right drawable only the left drawable is working on both ends.
2
votes
1 answer

CrystalRangeSeekbar not refelcting new value

I am using this library for range seekbar. I wish to set a value when the view is loaded and i am using this code. rangeSeekbar_exp.setMinStartValue(seekerActivity.filter_sort.min_exp); but it is not reflecting in the view.
Parth Anjaria
  • 3,961
  • 3
  • 30
  • 62
1
vote
0 answers

Custom SeekBar in Kotlin

I want to create a Custom Seekbar like this. Please give some idea to create this type of seek bar in Kotlin https://i.stack.imgur.com/ScHBK.png
1
vote
0 answers

Increase value of range seekbar by a specific value

I have implemented a range seek bar for my Android app using this library(https://github.com/Jay-Goo/RangeSeekBar). Currently it is working without any problem, but I need to setout value of the seekbar to be rouned to 5(Eg. When user moving the…
Joe26
  • 79
  • 2
  • 9
1
vote
2 answers

com.jaygoo.widget.RangeSeekBar : Android Seekbar show progress value along the seekbar

I use as library "com.jaygoo.widget.RangeSeekBar" to get a Range Seek Bar. Here's my following code XML :
Lina
  • 553
  • 10
  • 34
1
vote
1 answer

Kotlin - Range seekbar library

i'm using syedowaisali's Range Seekbar, and i'm having trouble getting my TextView to change according to the thumb's position on the bar. I have the following in my Activity's onCreate: val rangeSeekbar = CrystalRangeSeekbar(this) …
Barcode
  • 930
  • 1
  • 13
  • 31
1
vote
0 answers

RangeSeekBarView how to select a fixed range frame using custom RangeSeekBarView

I am using following code to select the range of video to Trime but I want select only part of 30s from total duration (2:30) like Whatsapp is doing. Referring to example: click here for example following is my custom class designed for…
Sagar
  • 5,273
  • 4
  • 37
  • 50
0
votes
0 answers

How to avoid overlapping of left and right thumb in crystalrangeseekbar when the range is higher

I am using Crystal range seekbar from https://github.com/syedowaisali/crystal-range-seekbar I am sending the range dynamically. So when the range is high and I drag the thumbs, it overlaps since the gap calculation is too small and it gets…
Anji
  • 36
  • 4
0
votes
1 answer

com.crystal.crystalrangeseekbar.widgets.BubbleThumbRangeSeekbar: problem with right and thumb image

I use in my android app with Kotlin the following library "com.crystal.crystalrangeseekbar.widgets.BubbleThumbRangeSeekbar" to set the price of product in slider. Here's the following code…
Lina
  • 553
  • 10
  • 34
0
votes
0 answers

How to Filter the Recycler listview by pricerange using rangeseekbar?

I have a list of items in recyclerview.the items contains name,price etc.I want to filter the list like if user select pricerange from 1200 to 5000 through rangeseekbar it should only show the items within that price range.. I have used…
0
votes
1 answer

Thumb image is slightly on left of thumb

I did some editing in the CrysalRangeBar to display text over the thumb, on which I found some success but I am facing a issue that the thumbImage is slighlty on left of original thumb which means if I have to slide the thumb I have to drag it from…
Pankaj Mundra
  • 1,401
  • 9
  • 25
0
votes
1 answer

How to divide seekbar into 2 different parts and with 2 different default steps in Android?

I'm creating a custom seek-bar with 2 thumbs, and seek-bar range is 0-10000000, My question is that I want to divide that seek-bar into 2 equal parts and first part range is 0-1000000 with default steps 10000 and second part range is…
Tharun
  • 29
  • 7
1
2