Android等效于BlackBerry navigator invoke()

时间:2013-07-22 22:31:45

标签: android blackberry blackberry-webworks blackberry-playbook

我正在测试在Android上创建的应用程序,但是在我的黑莓手册上,我有一个不支持的操作错误由此代码引起:

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

我读到要在本机sdk上使用appworldId uri,我们使用navigator调用方法,但是如何在android上执行?

1 个答案:

答案 0 :(得分:1)

我知道这听起来很奇怪,但请尝试从

更改URI

"appworld://content/xxxxxx"

"market://details?id=xxxxxx"

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