Basic4Android v1.8 BUG on horizontalscroll

KashMalaga

Member
Licensed User
Longtime User
Error, now its fixed!

I just have a project that runs and compile fine on v1.70.

If i use v1.78 with obfustation or release horizontalscroll didnt works.

Any info at filtered or checked logs :(
 
Last edited:

Erel

B4X founder
Staff member
Licensed User
Longtime User
A simple program works fine:
B4X:
Sub Globals
   'These global variables will be redeclared each time the activity is created.
   'These variables can only be accessed from this module.
   Dim hv As HorizontalScrollView
End Sub

Sub Activity_Create(FirstTime As Boolean)
   hv.Initialize(1000, "wv")
   Activity.AddView(hv, 10dip, 10dip, 300dip, 300dip)
End Sub
 
Upvote 0

KashMalaga

Member
Licensed User
Longtime User
The problem comes with more than 50 bitmap images, now its solved using less size :sign0161:

Thanks for your fast answer Erel
 
Upvote 0
Top