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 can try CallNonVirtualVoidMethod(): see http://docs.oracle.com/javase/6/docs/technotes/guides/jni/spec/functions.html#wp4581
You could do this:
protected void onCreate(Bundle bundle) { super.onCreate(bundle); onCreate0(bundle); } private native void onCreate0(Bundle bundle);