【问题标题】:how to add like button with a counter to my android app如何在我的android应用程序中添加带有计数器的like按钮
【发布时间】:2014-01-25 22:19:29
【问题描述】:

我想知道 facebook 开发者文档,

但只看到了如何将“点赞操作”和“点赞计数器”添加到 html page

我的意思是为该页面保存在 fb 服务器中的点赞计数器。

如何在java中为android应用程序完成?

【问题讨论】:

    标签: java android facebook facebook-like facebook-sdk-3.0


    【解决方案1】:

    在你有按钮的Xml布局中,在按钮属性中添加

    android:onclick="like_counter";// this will call that method
    

    在活动中, 全局编码

    int counter=0;
    
    public int like_counter()
    {
     counter++;
     return counter;
    }
    

    希望这是你的要求...

    【讨论】:

    • 我的意思是为该页面保存在 fb 服务器中的类似计数器。
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2014-09-10
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多