I\'m attempting to override an activity callback method with a native implementation (to hook Lua into an activity). However I\'ve hit a snag trying to call the superclass m
You could do this:
protected void onCreate(Bundle bundle) { super.onCreate(bundle); onCreate0(bundle); } private native void onCreate0(Bundle bundle);