Android:Intent twitter uri

时间:2012-04-08 07:27:24

标签: android twitter android-intent

在我的Android应用程序中,我想将用户重定向到我的Twitter个人资料页面,我使用此代码:

Inrent i : new Intent(Intent.ACTION_VIEW,Uri.parse(''https://www.twitter.com/MYUSER));
startActivity(i);

如果我选择浏览器它工作正常,但如果我选择推特应用程序它会显示Toast“Impossible tocomplete action”。我该如何解决这个问题?感谢

1 个答案:

答案 0 :(得分:1)

我相信你错过了setData()方法:

String url = "http://twitter.com";
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);

请在此处阅读更多内容:How can I open a URL in Android's web browser from my application?

请告诉我这是否有帮助!