Merge branch 'trz/rename' into trz/rebase
This commit is contained in:
commit
a6442dd3ac
3 changed files with 20 additions and 21 deletions
|
@ -332,32 +332,22 @@ public class MessageAdapter extends ArrayAdapter<Message> {
|
|||
}
|
||||
int patternMatchCount = 0;
|
||||
int oldAutoLinkMask = viewHolder.messageBody.getAutoLinkMask();
|
||||
Matcher matcher = null;
|
||||
|
||||
// first check if we have a match on XMPP_PATTERN so we do not have to check for EMAIL_ADDRESSES
|
||||
matcher = XMPP_PATTERN.matcher(body);
|
||||
if ((Linkify.EMAIL_ADDRESSES & oldAutoLinkMask) != 0 && matcher.find()) {
|
||||
patternMatchCount += countMatches(XMPP_PATTERN, body);
|
||||
if ((Linkify.EMAIL_ADDRESSES & oldAutoLinkMask) != 0 && patternMatchCount > 0) {
|
||||
oldAutoLinkMask -= Linkify.EMAIL_ADDRESSES;
|
||||
}
|
||||
|
||||
// count matches for all patterns
|
||||
if ((Linkify.WEB_URLS & oldAutoLinkMask) != 0) {
|
||||
matcher = Patterns.WEB_URL.matcher(body);
|
||||
while (matcher.find()) {
|
||||
patternMatchCount++;
|
||||
}
|
||||
patternMatchCount += countMatches(Patterns.WEB_URL, body);
|
||||
}
|
||||
if ((Linkify.EMAIL_ADDRESSES & oldAutoLinkMask) != 0) {
|
||||
matcher = Patterns.EMAIL_ADDRESS.matcher(body);
|
||||
while (matcher.find()) {
|
||||
patternMatchCount++;
|
||||
}
|
||||
patternMatchCount += countMatches(Patterns.EMAIL_ADDRESS, body);
|
||||
}
|
||||
if ((Linkify.PHONE_NUMBERS & oldAutoLinkMask) != 0) {
|
||||
matcher = Patterns.PHONE.matcher(body);
|
||||
while (matcher.find()) {
|
||||
patternMatchCount++;
|
||||
}
|
||||
patternMatchCount += countMatches(Patterns.PHONE, body);
|
||||
}
|
||||
|
||||
viewHolder.messageBody.setTextIsSelectable(patternMatchCount <= 1);
|
||||
|
@ -369,12 +359,25 @@ public class MessageAdapter extends ArrayAdapter<Message> {
|
|||
viewHolder.messageBody.setTextIsSelectable(false);
|
||||
}
|
||||
viewHolder.messageBody.setTextColor(this.getMessageTextColor(darkBackground, true));
|
||||
viewHolder.messageBody.setLinkTextColor(this.getMessageTextColor(darkBackground, true));
|
||||
viewHolder.messageBody.setHighlightColor(activity.getResources().getColor(darkBackground ? R.color.grey800 : R.color.grey500));
|
||||
viewHolder.messageBody.setTypeface(null, Typeface.NORMAL);
|
||||
viewHolder.messageBody.setOnLongClickListener(openContextMenu);
|
||||
}
|
||||
|
||||
/**
|
||||
* Counts the number of occurrences of the pattern in body.
|
||||
* @param pattern the pattern to match
|
||||
* @param body the body to find the pattern
|
||||
* @return the number of occurrences
|
||||
*/
|
||||
private int countMatches(Pattern pattern, String body) {
|
||||
Matcher matcher = pattern.matcher(body);
|
||||
int count = 0;
|
||||
while (matcher.find()) {
|
||||
count++;
|
||||
}
|
||||
return count;
|
||||
}
|
||||
|
||||
private void displayDownloadableMessage(ViewHolder viewHolder,
|
||||
final Message message, String text) {
|
||||
viewHolder.image.setVisibility(View.GONE);
|
||||
|
|
|
@ -54,9 +54,7 @@
|
|||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:autoLink="web|phone|email"
|
||||
android:textColorLink="@color/primaryText"
|
||||
android:textColor="@color/primaryText"
|
||||
android:textColorHighlight="@color/grey500"
|
||||
android:textSize="?attr/TextSizeBody"
|
||||
app:emojiconSize="28sp" />
|
||||
|
||||
|
|
|
@ -54,9 +54,7 @@
|
|||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:autoLink="web|phone|email"
|
||||
android:textColorLink="@color/primaryText"
|
||||
android:textColor="@color/primaryText"
|
||||
android:textColorHighlight="@color/grey500"
|
||||
android:textSize="?attr/TextSizeBody"
|
||||
app:emojiconSize="28sp"/>
|
||||
|
||||
|
|
Loading…
Reference in a new issue