无法分享最新的ShareButton CodenameOne api

时间:2015-03-01 12:33:05

标签: android facebook java-me codenameone

您好我已将Facebook Demo导入netbeans并遵循开发人员指南中提到的指南,并设置了所需的Facebook权限。但即时通讯未能将文本分享到墙上,我可以在那里重新提供朋友列表,个人资料信息和新闻提要。

    final ShareButton share = new ShareButton();
    final TextArea t = new TextArea(" This is sample text from using CodenameOne api");
    t.addActionListener(new ActionListener() {

        public void actionPerformed(ActionEvent evt) {
            share.setTextToShare(t.getText());
        }
    });
    c.addComponent(BorderLayout.CENTER, t);
    share.setTextToShare(t.getText());

有什么东西可以用来集成或设置任何additioanl权限吗?

1 个答案:

答案 0 :(得分:0)

如果在设备或模拟器中,您需要清楚。在iOS / Android上,使用了本机共享功能,其行为与模拟器非常不同。

Facebook最近改变了权限的工作方式,并基本上阻止了对非iOS / Android平台的支持。在块之后仍然可以工作,但它可能会停止。