これを行うクラスを見つけましたが、まさに必要なもののようです。
public static class StringUtil
{
public static String limit(String value, int length)
{
StringBuilder buf = new StringBuilder(value);
if (buf.length() > length)
{
buf.setLength(length);
buf.append("…");
}
return buf.toString();
}
}
という文字列があり、review
そのクラスを次のように使用します。
StringUtil.limit(review, 50);
追記ではないようです。
価値があるのは、Androidアプリ用です。これは、 の内部のPostExectute
メソッドで行われています。AsyncTask
ListFragement
私はこれを正しく行っていますか?