我正在开发一个Android应用程序,并希望添加一个类似Facebook的按钮,点击后,将用户重定向到Facebook上的应用程序粉丝页面,有没有办法解决这个问题。
答案 0 :(得分:3)
创建ImageView,使用facebook like button作为图片,set使用OnClickListener starts activity Intent ACTION_VIEW Uri {{3}}行动{{3}} {{3}}和你的Facebook一样{{3}}页面。这看起来像这样:
ImageButton img = new ImageButton(this);
//set img's image to the fb like image
img.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
Intent open = new Intent(Intent.ACTION_VIEW, Uri.parse("http://..."));
startActivity(open);
}
});