This repository was archived by the owner on Jun 13, 2024. It is now read-only.

Description
Is there a way to show an android xml layout and run a java function on load?
(I have java class that embeded an android layout in init)
I tried things like that:
ace.navigate("android://android_sample.xml", function (root) {
var className = ace.valueOn({ android: "mypackage.example", ios: "example" });
ace.NativeObject.invoke(className, "check", 1, function (result) { });
});