Would it be possible to have image from url added ?
equivalent to java
I have coded it in the #if java block, but it's a pain to have to use runmethod(...) etc to access it.
So it could become
As I am currently trying
but this changes the slashes and you get a file not found error when the address is in a string variable.
equivalent to java
B4X:
public static Image ImageFromURL(String url){
return new Image(url);
}
So it could become
B4X:
Dim img As Image
img = ImageFromURL(theURL)
As I am currently trying
B4X:
img.Initialize("https://...","")