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