Android Question help! change color bar HorizontalScrollView

phongka

Member
i want to change the color value of scrollbar: HorizontalScrollView (no listwiew)

please help me. Thankyou!
 

phongka

Member
(Don't use HorizontalScrollView. Use xCustomListView. You can set its orientation to horizontal (in the designer))

Are you asking about the indicator that appears while scrolling?
Hi

Sub Globals
'These global variables will be redeclared each time the activity is created.
Dim ds As CustomListView


Private ds As CustomListView
Private p As Panel

End Sub


ds.Initialize("","CustomList")
p.AddView(ds.AsView,0,0,100%x,100%y)

-----
it is not newly created runtime in module.. Do you have any suggestions to help me?
 
Upvote 0

phongka

Member
here is my sample code
B4X:
Sub Globals
'These global variables will be redeclared each time the activity is created.
Dim ds As CustomListView


Private ds As CustomListView
Private p As Panel

End Sub


ds.Initialize("","CustomList")
p.AddView(ds.AsView,0,0,100%x,100%y)
 
Upvote 0
Top