Is B4A's ImageView = Android Java ImageView?

socialnetis

Active Member
Licensed User
Longtime User
Is the ImageView in B4A is of the same type as in Java? I have a library in Java which raises and event with ImageView, and I can't catch in B4A (I get type errors)
 

socialnetis

Active Member
Licensed User
Longtime User
The ImageView class is wrapped by the B4A ImageViewWrapper class:
ImageView = ImageViewWrapper.getObject()

Thanks! I used the setObject in ImageViewWrapper, and now I can use this object to raise an event in java and capture it in B4A. That was what I was looking for, thank you very much
 
Upvote 0
Top