1

我正在测试一个在 android 中创建的应用程序,但在我的 blackberry playbook 上,我有一个由此代码引起的操作不支持错误:

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("appworld://content/xxxxxx"));
startActivity(intent);

我读到在本机 sdk 上使用 appworldId uri,我们使用 navigator 调用方法,但我如何在 android 上做到这一点?

4

1 回答 1

1

我知道这对您来说听起来很奇怪,但请尝试将 URI 从

"appworld://content/xxxxxx"

"market://details?id=xxxxxx"

其中“xxxxxx”不是 AppWorld ID,而是包名称(与 Android 中相同)。

于 2013-07-23T10:10:28.787 回答