seekbar issues when using custom thumb - android

I am having troubles with a seek bar, i am trying to create an audio settings fragment but when i customize my seekbar thumb i noticed that the progress does not start and end in where i would like to.
I tried lot of things but i cannot find the solution.
I would also like to add white lines in the background like from 1 to 10.
Thanks for the help

seems like this simple line fixed the thing:
android:thumbOffset="5dp"
Thanks anyway and hope this can help someone.

Related

Need to make custom seekbar for music player

I want to make a seekbar like the one in the figure for a music player project I'm working on.
Searched everywhere could not find anything helpful, any help will be appreciated
I think it would be easier to implement with ProgressBar with a horizontal style and not SeekBar. I think the most simple way to implement it is to set the android:progressDrawable xml attribute with a drawable of the pattern above (white background and the bars - invisible).

How can you recreate this?

I need to recreate something exactly like this. A bar with a slider and with various colors, exactly the same. I was looking for a bit 'but I can not find a way to do it or anything like that. Can anyone give me a track to work on? Thank you!
What you're looking for is
Android seekbar
And then to style it you would probably end up doing like this so answer
https://stackoverflow.com/a/27035469/2880747
or this one
Custom seekbar (thumb size, color and background)
I personally used the latter, and it was working great :)

Android Seekbar dot want disappear

I have a project to build android application use seekbar. I wanna the dot seekbar disapper is posible? if possible how to make the dot disappear. like this http://prntscr.com/bwgaok
I worked on this one and it works for me
Use this following library for circular seekbar
https://github.com/devadvance/circularseekbar
and give app:pointer_radius="0dp"
It will work better
Have you tried seekBar.getThumb().mutate().setAlpha(0); ?
If you wish to make the seekBar "unclickable" use seekBar.setEnabled(false)

how to change the look and feel of a range-seek-bar?

In my application i am using range-seek-bar library to obtain this functionality.
I want to change the look and feel of the the range progress bar displayed in this library.
I have tried changing the design in similar line with this code :
click here
But could not achieve anything as the default options of a seek bar are not present in the range-seek-bar.
I want the range seek bar to be styled as :
I am not able to figure out how to solve this issue... I am struggling with this from quite a few days.
Please help ! Thanks In Advance!

Android - IOS Style Background

I searched for it, but couldn't find any result.
What I want to know is the transparency background like on iPhone when you open menu from down for android.
It looks like this.
https://s-media-cache-ak0.pinimg.com/236x/8a/22/d3/8a22d35bb4983778fea3d3c9845c61a8.jpg
http://orig15.deviantart.net/50e5/f/2013/217/9/0/ios_7_like_background_by_kyroapps-d6gudzf.png
Actually you need blur effect for background (not only transparent)
here is some libs that can help you:
https://android-arsenal.com/tag/176
hope it helps

Categories

Resources