偏好:OnClick指向社交网络

时间:2013-07-06 05:16:26

标签: java android

我创建了一个偏好活动,我在其中放置了各种社交网络偏好(Facebook,Twitter,Google +),我想点击这些偏好你可能会被引导到相应的页面,我该怎么办?

1 个答案:

答案 0 :(得分:1)

它将打开具有给定URL的浏览器:

Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.facebook.com"));
startActivity(browserIntent);

如果您想打开应用,请尝试以下操作:

Intent intent = new Intent("android.intent.category.LAUNCHER");
intent.setClassName("com.facebook.katana", "com.facebook.katana.LoginActivity");
startActivity(intent);