我正在从我的应用链接到 Google Play 中的另一个应用。该链接在我的 Nexus 平板电脑和 ICS HTC One X 上运行良好,但在 HTC Inspire 4G Android 2.2 上该链接出现错误,它说
“找不到请求的项目。”
这是我正在使用的链接:
String pushUrl = "market://details?id=com.laughingplaceapps.relaxopen";
我正在使用的代码:
Uri marketUri = Uri.parse(pushUrl);
Intent intent = new Intent(Intent.ACTION_VIEW, marketUri);
startActivity(intent);