gpt4 book ai didi

java - 首选项 : OnClick directing towards social network

转载 作者:行者123 更新时间:2023-11-30 03:30:54 26 4
gpt4 key购买 nike

我创建了一个偏好 Activity ,我在其中放置了各种社交网络偏好(Facebook、Twitter、Google+),我想点击这些偏好,您可能会被定向到相应的页面,我该怎么做?

最佳答案

它将打开具有给定 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);

关于java - 首选项 : OnClick directing towards social network,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17499922/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com