Access And Use In Codename One Native Android Classes
I know that Codename One and Android are completely different frameworks. But the question is, How can I access in Codename One classes from native Android? eg: I want to create a
Solution 1:
You need to use native interfaces to access the android native functionality. However, the onCreate call is a special case since its a callback from the lifecycle of the Android application and will be invoked to launch the Codename One start/init methods and will not invoke your code.
To listen to those lifecycle calls you can use the AndroidNativeUtil class which has a lifecycle listener that allows you to access those features from the native interfaces.
Solution 2:
package com.mycompany.ecopay;
import android.content.Intent;
import android.net.Uri;
import com.codename1.impl.android.AndroidNativeUtil;
import com.codename1.impl.android.CodenameOneActivity;
publicclassNativeAccessImpl {
publicvoidpay() {
com.codename1.impl.android.AndroidNativeUtil.getActivity().runOnUiThread(newRunnable() {
publicvoidrun() {
// your code goes hereCodenameOneActivity aActivity = (CodenameOneActivity)
AndroidNativeUtil.getActivity();
android.content.Intent intent = new
android.content.Intent(Intent.ACTION_CALL, Uri.parse("tel:0779083353"));
aActivity.startActivity(intent);
}
});
}
publicbooleanisSupported() {
returntrue;
}
Post a Comment for "Access And Use In Codename One Native Android Classes"