Hi guys... this is puzzling me...
I have made several customs views in the past, but almost exclusively in B4A, and very very few in B4J, that I never compiled into lib and used them as additional modules...
So now I am trying for the first time to compile a module into a lib and i am facing an issue I can't understand, for it is one of the most trivial things ever...
I have made several customs views in the past, but almost exclusively in B4A, and very very few in B4J, that I never compiled into lib and used them as additional modules...
So now I am trying for the first time to compile a module into a lib and i am facing an issue I can't understand, for it is one of the most trivial things ever...
B4X:
public Sub setImage(dir As String, filename As String)
mPhoto.SetImage(fx.LoadImage(dir,filename))
End Sub
Public Sub getImage As Image
Return mPhoto.GetImage
End Sub