2

有发布对话框,当我使用它时,我的一台设备出现错误。

这种情况只在我的一部手机上......

你能帮助我吗?

我的代码:

private void publishFeedDialog() {      
    Bundle params = new Bundle();
    params.putString("name", getResources().getString(R.string.r_name));
    params.putString("caption","www.url.com");
    params.putString("description", "My desc");
    params.putString("link", getResources().getString(R.string.url_www));
    params.putString("picture", "http://ulr.com");

    WebDialog feedDialog = (
        new WebDialog.FeedDialogBuilder(this,
            Session.getActiveSession(),
            params))
        .setOnCompleteListener(new OnCompleteListener() {



            @Override
            public void onComplete(Bundle values, FacebookException error) {    
            }

        })
        .build();

    feedDialog.show();
}

请帮我解决这个错误。

4

0 回答 0