Hallo,
ich versuche mir die Inline Java geschichte etwas nahe zu bringen, scheitere aber schon beim aufruf einer classe.
ic nehme mal an das mein Problem hier;
zu suchen ist ich komm jedoch irgendwie nicht weiter
lg
andy
ich versuche mir die Inline Java geschichte etwas nahe zu bringen, scheitere aber schon beim aufruf einer classe.
B4X:
Dim s As Float = NativeMe.RunMethod("AquaLib.one",Array As Object(kh,co))
#If JAVA
import java.lang.Math;
import java.lang.Float;
public class AquaLib {
public Float one(Float kh,Float co) {
float x = (float) Math.round((7.90+Math.log(kh/(2.8*co))/Math.log(10))*100)/100;
return x;
}
public Float two(Float kh,Float co) {
float x = (float) Math.round((7.90+Math.log(kh/(2.8*co))/Math.log(10))*100)/100;
return x;
}
public Float three(Float kh,Float co) {
float x = (float) Math.round((7.90+Math.log(kh/(2.8*co))/Math.log(10))*100)/100;
return x;
}
public Float four(Float kh,Float co) {
float x = (float) Math.round((7.90+Math.log(kh/(2.8*co))/Math.log(10))*100)/100;
return x;
}
}
#end if
ic nehme mal an das mein Problem hier;
B4X:
NativeMe.RunMethod("AquaLib.one",Array As Object(kh,co))
lg
andy