我希望我的应用程序打开SIM卡工具包,以便用户可以通过sim工具包应用程序中提供的移动设备进行付款 请帮忙
答案 0 :(得分:1)
这样的东西会在某些设备上启动它:
Intent simToolKitLaunchIntent = getContext().getPackageManager().getLaunchIntentForPackage("com.android.stk");
if(simToolKitLaunchIntent != null) {
startActivity(simToolKitLaunchIntent);
}