Android中的Facebook Post对象

Android中的Facebook Post对象,android,facebook,facebook-graph-api,Android,Facebook,Facebook Graph Api,嗨,我在写Facebook应用程序,我在这里使用Post对象发布朋友墙的消息,我也可以发布 但我的问题是,当我点击我给出的文本(希望…)时,我也得到了图像链接,正如你们在下面的屏幕截图中看到的 所以在这里我需要一个小的帮助,我如何才能删除这个链接 我在Strings.xml中给出了此文本消息: <string name="app_action">Wishing you a birthday as special as you are! Hope this is a new be

嗨,我在写Facebook应用程序,我在这里使用Post对象发布朋友墙的消息,我也可以发布

但我的问题是,当我点击我给出的文本(希望…)时,我也得到了图像链接,正如你们在下面的屏幕截图中看到的

所以在这里我需要一个小的帮助,我如何才能删除这个链接

我在Strings.xml中给出了此文本消息:

   <string name="app_action">Wishing you a birthday as special as you are! Hope this is a new beginning to lots of great things and happy moments in your life. Wish you a fabulous birthday!</string>
我的代码:

    Bundle params = new Bundle();
    params.putString("method", "fql.query");
    params.putString("query", query);
    FacebookUtility.asyncRunner.request(null, params, new FacebookRequestListener(FacebookRequestListener.FRIENDS, facebookRequest));

可能是您没有正确设置post参数。请参阅我为此使用的代码:

 Bundle postParams = new Bundle();

        postParams.putString("name", getString(R.string.fbPostName));
        postParams.putString("caption", getString(R.string.fbPostCaption));
        postParams.putString("description", getString(R.string.fbPostDescription).replace("(Venue)",venueName ));
        postParams.putString("link", getString(R.string.fbPostLink));
        postParams.putString("picture", getString(R.string.fbPostPicture));
最后两行代码用于设置图片和链接的链接

 Bundle postParams = new Bundle();

        postParams.putString("name", getString(R.string.fbPostName));
        postParams.putString("caption", getString(R.string.fbPostCaption));
        postParams.putString("description", getString(R.string.fbPostDescription).replace("(Venue)",venueName ));
        postParams.putString("link", getString(R.string.fbPostLink));
        postParams.putString("picture", getString(R.string.fbPostPicture));