Wish embed java code

icefairy333

Active Member
Licensed User
Longtime User
wish b4a can support embed java code,in that way ,we can do much more impossible thing.
just using like
B4X:
dim intx,inty,result as int
intx=123
inty=234
#java begin
_result=_intx+_inty;//we dim intx as a int variable will automatic convert to _intx so we can using it //directly in java code,Erel you can write those java code to the final java source code directly.
System.out.println("result is:"+_result);
#java end
log("result from b4a:"&result)
with this way,we can do much thing like override other android method,don't think over about the compile error,this function will just face to the power user of B4A,anyone agree with me?
 
Top