0

我真的需要在 facebook 墙贴的描述中添加一个换行符。有一个使用<center></center>标签的黑客攻击,但它不再起作用了。我正在使用适用于 Android 的 Facebook API:

public Bundle createFacebookMsg() {
    Bundle params = new Bundle();
    ...
    params.putString("description", "my custom string with LINE BREAKS");

    // does not work any more
    // params.putString("description", "line1<center></center>line2");

    ...
    return params;
}
4

1 回答 1

-1

这对我有用:

StringBuilder messageData = new StringBuilder(title).append('\n')
    .append('\n').append(message).append('\n').append('\n')
    .append(description);
// Message
postParams.putString("message", messageData.toString());
于 2013-02-16T22:36:28.947 回答