3

こんにちは、私は Facebook アプリケーションを書いています。ここでは、Post オブジェクトを使用して Friends Wall のメッセージを投稿しています。同様に投稿することもできます。

しかし、私の問題は、下のスクリーンショットでわかるように、指定したテキスト (希望...) をクリックしているときに画像リンクも取得していることです。

だからここで私は小さな助けが必要です、どうすればこのリンクを削除できます...

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>

ここに画像の説明を入力

イメージリンク:

  public static final String HACK_ICON_URL = "http://i1.pickupflowers.com/images/puf/images/product/large/carnations-lilies-and-roses.jpg";

私のコード:

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

1 に答える 1