Start with a regular ScrollView. Are you able to scroll it?
Initially I was not able to scroll it but I found out by accident that you can scroll it if you use 2 fingers. Looks like my ignorance of how the screen reader works.
About the B4XSeekBar. I was also able to move the slider by using 2 finger dragging but tapping on that view was not recognised. Normally when a view is not recognised like that, I use this subroutine.
Public Sub SetContentDesc(v As View, desc As String)
Dim r As Reflector
r.Target = v
r.RunMethod2("setContentDescription", desc, "java.lang.CharSequence")
End Sub
For most views this works but not for the B4XSeekBar. Instead I get a warning about types.
When I try to compile the app I get this error.
What do I need to change so the types will match?
Thanks.