show in ui when text was shortened

This commit is contained in:
Daniel Gultsch 2016-05-29 01:14:45 +02:00
parent aaf5233efe
commit 2c55954ddd
2 changed files with 2 additions and 4 deletions

View File

@ -76,7 +76,7 @@ public final class Config {
public static final int REFRESH_UI_INTERVAL = 500;
public static final int MAX_DISPLAY_MESSAGE_CHARS = 2 * 1024;
public static final int MAX_DISPLAY_MESSAGE_CHARS = 4096;
public static final boolean DISABLE_PROXY_LOOKUP = false; //useful to debug ibb
public static final boolean DISABLE_HTTP_UPLOAD = false;

View File

@ -19,7 +19,6 @@ import android.text.style.RelativeSizeSpan;
import android.text.style.StyleSpan;
import android.text.util.Linkify;
import android.util.DisplayMetrics;
import android.util.Log;
import android.util.Patterns;
import android.view.View;
import android.view.View.OnClickListener;
@ -311,8 +310,7 @@ public class MessageAdapter extends ArrayAdapter<Message> {
body = message.getMergedBody();
}
if (body.length() > Config.MAX_DISPLAY_MESSAGE_CHARS) {
Log.d(Config.LOGTAG,"not showing complete message of length "+body.length());
body = body.substring(0, Config.MAX_DISPLAY_MESSAGE_CHARS);
body = body.substring(0, Config.MAX_DISPLAY_MESSAGE_CHARS)+"\u2026";
}
final SpannableString formattedBody = new SpannableString(body);
int i = body.indexOf(Message.MERGE_SEPARATOR);