我有一个博客,在每个帖子下都显示了一个像Facebook一样的按钮。 我想添加该按钮,点击后,就像那篇博文,到Android应用程序。那可能吗?如果是,那怎么办?
我必须使用Facebook SDK吗?
这是按钮在博客中的显示方式。
<iframe allowTransparency='true' expr:src='"http://www.facebook.com/plugins/like.php?href=" + data:post.canonicalUrl+"&send=false&layout=button_count&show_faces=false&width=90&action=like&font=arial&colorscheme=light&height=21"' frameborder='0' scrolling='no' style='border:none; overflow:hidden; width:90px; height:21px;'/>
答案 0 :(得分:0)
试试这个:它为我工作
<com.facebook.widget.LikeView
android:id="@+id/like"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Like"
/>
在android类文件中添加以下代码:
LikeView likeView = (LikeView) findViewById(R.id.like);
likeView.setObjectId("Your URL);