Within "Sub Activity_Create(FirstTime As Boolean)"...
I have created the following ColorDrawable:
Dim enabled, pressed As ColorDrawable
enabled.Initialize(Colors.ARGB(255,63,63,63), 100)
pressed.Initialize(Colors.ARGB(255,100,100,100), 100)
And used it as such:
Dim sld_Up...