如何检查是否使用 getPackageManager 安装了应用程序?我不知道。谢谢。安卓。
Intent intent = new Intent();
intent.setClassName("PACKAGE_NAME", "PACKAGE_NAME.TARGET_ACTIVITY");
if (isCallable(context, intent)) {
// Attach any extras, start or start with callback
} else {
// Respond to the application or activity not being available
}