mirror of
https://github.com/moparisthebest/Conversations
synced 2024-11-04 16:25:06 -05:00
only rendering first 5k chars of each message
This commit is contained in:
parent
ce0888b077
commit
422fd1847f
@ -76,6 +76,8 @@ public final class Config {
|
||||
|
||||
public static final int REFRESH_UI_INTERVAL = 500;
|
||||
|
||||
public static final int MAX_DISPLAY_MESSAGE_CHARS = 5 * 1024;
|
||||
|
||||
public static final boolean DISABLE_PROXY_LOOKUP = false; //useful to debug ibb
|
||||
public static final boolean DISABLE_HTTP_UPLOAD = false;
|
||||
public static final boolean DISABLE_STRING_PREP = false; // setting to true might increase startup performance
|
||||
|
@ -19,6 +19,7 @@ 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;
|
||||
@ -39,6 +40,7 @@ import java.util.regex.MatchResult;
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
import eu.siacs.conversations.Config;
|
||||
import eu.siacs.conversations.R;
|
||||
import eu.siacs.conversations.crypto.axolotl.XmppAxolotlSession;
|
||||
import eu.siacs.conversations.entities.Account;
|
||||
@ -308,6 +310,10 @@ public class MessageAdapter extends ArrayAdapter<Message> {
|
||||
} catch (ArrayIndexOutOfBoundsException e) {
|
||||
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);
|
||||
}
|
||||
final SpannableString formattedBody = new SpannableString(body);
|
||||
int i = body.indexOf(Message.MERGE_SEPARATOR);
|
||||
while(i >= 0) {
|
||||
|
@ -53,7 +53,6 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:autoLink="web"
|
||||
android:maxLines="256"
|
||||
android:textColorLink="@color/white"
|
||||
android:textColor="@color/white"
|
||||
android:textColorHighlight="@color/grey800"
|
||||
|
@ -54,7 +54,6 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:autoLink="web"
|
||||
android:maxLines="256"
|
||||
android:textColorLink="@color/black87"
|
||||
android:textColor="@color/black87"
|
||||
android:textColorHighlight="@color/grey500"
|
||||
|
Loading…
Reference in New Issue
Block a user