Sub Globals
Private IconsGrid(101) As ImageView
Private scrollGridimages As ScrollView
End Sub
Sub Activity_Create(FirstTime As Boolean)
For i = 0 To 100
IconsGrid(i).Initialize("IconsGrid")
IconsGrid(i).width = 30dip
IconsGrid(i).height = 30dip
' here i am not sure what i have to do
' to draw a grid programatically into scrollview
' as example 6 images per row
Next
End Sub
i am not actually sure how to draw the images inside the view as a grid and allow scrolling
Don't use this. Better implementation in SimpleMediaManager: https://www.b4x.com/android/forum/threads/b4x-simplemediamanager-smm-framework-for-images-videos-and-more.134716/#content A cross platform library that allows loading images using background threads. It can be useful with keeping the...