打开Sim工具包的菜单

时间:2015-06-10 11:47:56

标签: android gsm sim-toolkit

我希望我的应用程序打开SIM卡工具包,以便用户可以通过sim工具包应用程序中提供的移动设备进行付款 请帮忙

1 个答案:

答案 0 :(得分:1)

这样的东西会在某些设备上启动它:

Intent simToolKitLaunchIntent = getContext().getPackageManager().getLaunchIntentForPackage("com.android.stk");
if(simToolKitLaunchIntent != null) {
    startActivity(simToolKitLaunchIntent);
}