我想通过点击该按钮点击我的谷歌加页面上的一个按钮,意味着当我点击自动关注我的页面的Google+按钮时,我非常瞪眼但是没找到
确切的,所以请任何人帮我解决。
答案 0 :(得分:0)
Google+关注按钮没有原生支持。请参阅documentation。但是,您可以看到here。
支持+1按钮如果您真的想要一个Google+关注按钮,理论上您可以使用WebView并在其中放置一个Web API跟踪按钮,如文档所述here
答案 1 :(得分:0)
抱歉! Google+关注页面没有自定义按钮。我认为,我使用下面的代码对您有用。此代码是直接打开的Google+信息页和默认关注按钮。
public void openGPlus(String profile) {
try {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setClassName("com.google.android.apps.plus",
"com.google.android.apps.plus.phone.UrlGatewayActivity");
intent.putExtra("customAppUri", profile);
startActivity(intent);
} catch (ActivityNotFoundException e) {
startActivity(new Intent(Intent.ACTION_VIEW,
Uri.parse("https://plus.google.com/" + profile + "/posts")));
}
}
调用此方法,例如openGPlush("数字页面ID");