发布网友 发布时间:2022-05-18 21:30
共1个回答
热心网友 时间:2023-11-06 05:25
直接Intent到微信 Intent intent = new Intent();ComponentName cmp = new ComponentName(" com.tencent.mm ","com.tencent.mm.ui.LauncherUI");intent.setAction(Intent.ACTION_MAIN);intent.addCategory(Intent.CATEGORY_LAUNCHER);intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);intent.setComponent(cmp);如果报错android.content.ActivityNotFoundException: Unable to find explicit activity class { com.tencent.mm /com.tencent.mm.ui.LauncherUI}; have you declared this activity in your AndroidManifest.xml? 那就表示你的设备上没有安装微信