android,在facebook上发布时没有正确显示对话框

android,在facebook上发布时没有正确显示对话框,android,facebook,dialog,Android,Facebook,Dialog,我在facebook上发布了一些安卓应用程序的数据。 除了对话框窗口不显示参数(如文本等)之外,它工作正常![请参阅附图][1] 这是我用来显示对话框的代码 try { Bundle parameters = new Bundle(); parameters.putString("message", "this is a test");// the message to post to

我在facebook上发布了一些安卓应用程序的数据。 除了对话框窗口不显示参数(如文本等)之外,它工作正常![请参阅附图][1]

这是我用来显示对话框的代码

            try
            {
                Bundle parameters = new Bundle();
                parameters.putString("message", "this is a test");// the message to post to the wall
                facebookClient.authorize(activity.this, listener);
                facebookClient.dialog(myContext, "stream.publish", parameters, listener);// "stream.publish" is an API call
            }
            catch (Exception e)
            {
                // TODO: handle exception
                Log.i("test","error = "+e.toString());
            }
有人知道我做错了什么吗

非常感谢