AndroidJavaObject.CallStaticfunction CallStatic (methodName : String, params args : object[]) : voidParameters
DescriptionCall a static Java method on a class. To call a static method with return type 'void', use the regular version. // Create a android.os.Binder object and call statich method flushPendingCommands().
function CallStatic.<ReturnType> (methodName : String, params args : object[]) : ReturnTypeParameters
DescriptionCall a static Java method on a class. To call a static method with a non-void return type, use the generic version. // Create a java.lang.String object, and call static method valueOf(float value).
|
