Back to project page kirin-for-android.
The source code is released under:
Apache License
If you think the Android project kirin-for-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.futureplatforms.kirin.helpers; //from w ww .java2s .co m import com.futureplatforms.kirin.internal.core.IJsContext; import com.futureplatforms.kirin.internal.core.IKirinState; import com.futureplatforms.kirin.internal.core.INativeContext; public class KirinUiFragmentHelper extends KirinHelper { public KirinUiFragmentHelper(Object nativeObject, String moduleName, IJsContext jsContext, INativeContext nativeContext, IKirinState appState) { super(nativeObject, moduleName, jsContext, nativeContext, appState); } public void onPause() { super.jsMethod("onPause"); } public void onResume(Object... args) { super.jsMethod("onResume", (Object[]) args); } }