Hi there...
my little-knowledge to java limit me again.. :-(
is it possible from inline java send an array of object or list to B4J... whatever... and how ?
I have a byte array and an integer - how i will do that...
until now...
...but i think i am wrong...
because getting:
my little-knowledge to java limit me again.. :-(
is it possible from inline java send an array of object or list to B4J... whatever... and how ?
I have a byte array and an integer - how i will do that...
until now...
B4X:
anywheresoftware.b4a.objects.collections.List list = new anywheresoftware.b4a.objects.collections.List();
list.setObject(finalCompressedArray);
list.setObject(decompressedLength);
ba.raiseEventFromUI(this, "myback", list); //this
...but i think i am wrong...
because getting:
src\b4j\example\cap.java:305: error: incompatible types: byte[] cannot be converted to List<Object>
list.setObject(finalCompressedArray);