You can put the seekbar on the Activity !
What ScrollView Example are you speeking of ?
There are two examples in the
Beginner's Guide with Seekbars which are directly on the Activity.
But in these two examples there are two means to scroll horizontaly:
- with a panel, by default (dynamic scrolling)
- with a SeekBar (static scrolling), by default the seekbar is set to Visible = False, not shown.
If in these examples you replace
skbScroll.Visible = False by
skbScroll.Visible = True, you will have the SeekBar.
You just see the Panel behind it but the SeekBar is on the Activity and not on the Panel.
You could remove the scroll panel and remove the code for it to have only the SeekBar. The goal of having two means was to show both possibilities.
Best regards.