Android Question (SOLVED) Custom SeekBar - interval

Traiser

Member
Licensed User
Longtime User
Hi, i have a problem with custom seekbar ( this class )
when i move the pointer in the default seekbar, the pointer have a interval between one step and another step..
in the custom seekbar this interval does not exist..

how to implement this effect?

Tnx
 

Traiser

Member
Licensed User
Longtime User
i solved my problem with this code:

B4X:
Sub SBT_Click(returnValue)
    SBT1.Value = returnValue  'this code
    Activity.Title = "Value is " & returnValue  
End Sub

Thank you anyway
 
Upvote 0
Top