You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 13, 2024. It is now read-only.
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) { });
});