fixed #235
This commit is contained in:
parent
42ad901356
commit
9a239f6589
|
@ -257,6 +257,7 @@ public class Conversation extends AbstractEntity {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void resetOtrSession() {
|
public void resetOtrSession() {
|
||||||
|
this.otrFingerprint = null;
|
||||||
this.otrSessionNeedsStarting = false;
|
this.otrSessionNeedsStarting = false;
|
||||||
this.otrSession = null;
|
this.otrSession = null;
|
||||||
}
|
}
|
||||||
|
|
|
@ -53,7 +53,8 @@ public class UIHelper {
|
||||||
private static final int BG_COLOR = 0xFF181818;
|
private static final int BG_COLOR = 0xFF181818;
|
||||||
private static final int FG_COLOR = 0xFFE5E5E5;
|
private static final int FG_COLOR = 0xFFE5E5E5;
|
||||||
private static final int TRANSPARENT = 0x00000000;
|
private static final int TRANSPARENT = 0x00000000;
|
||||||
private static final int DATE_NO_YEAR_FLAGS = DateUtils.FORMAT_SHOW_DATE | DateUtils.FORMAT_NO_YEAR | DateUtils.FORMAT_ABBREV_ALL;
|
private static final int DATE_NO_YEAR_FLAGS = DateUtils.FORMAT_SHOW_DATE
|
||||||
|
| DateUtils.FORMAT_NO_YEAR | DateUtils.FORMAT_ABBREV_ALL;
|
||||||
|
|
||||||
public static String readableTimeDifference(Context context, long time) {
|
public static String readableTimeDifference(Context context, long time) {
|
||||||
if (time == 0) {
|
if (time == 0) {
|
||||||
|
@ -66,12 +67,14 @@ public class UIHelper {
|
||||||
} else if (difference < 60 * 2) {
|
} else if (difference < 60 * 2) {
|
||||||
return context.getString(R.string.minute_ago);
|
return context.getString(R.string.minute_ago);
|
||||||
} else if (difference < 60 * 15) {
|
} else if (difference < 60 * 15) {
|
||||||
return context.getString(R.string.minutes_ago,Math.round(difference/60.0));
|
return context.getString(R.string.minutes_ago,
|
||||||
|
Math.round(difference / 60.0));
|
||||||
} else if (today(date)) {
|
} else if (today(date)) {
|
||||||
java.text.DateFormat df = DateFormat.getTimeFormat(context);
|
java.text.DateFormat df = DateFormat.getTimeFormat(context);
|
||||||
return df.format(date);
|
return df.format(date);
|
||||||
} else {
|
} else {
|
||||||
return DateUtils.formatDateTime(context, date.getTime(), DATE_NO_YEAR_FLAGS);
|
return DateUtils.formatDateTime(context, date.getTime(),
|
||||||
|
DATE_NO_YEAR_FLAGS);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -80,12 +83,13 @@ public class UIHelper {
|
||||||
Calendar cal2 = Calendar.getInstance();
|
Calendar cal2 = Calendar.getInstance();
|
||||||
cal1.setTime(date);
|
cal1.setTime(date);
|
||||||
cal2.setTimeInMillis(System.currentTimeMillis());
|
cal2.setTimeInMillis(System.currentTimeMillis());
|
||||||
return cal1.get(Calendar.YEAR) == cal2.get(Calendar.YEAR) &&
|
return cal1.get(Calendar.YEAR) == cal2.get(Calendar.YEAR)
|
||||||
cal1.get(Calendar.DAY_OF_YEAR) == cal2.get(Calendar.DAY_OF_YEAR);
|
&& cal1.get(Calendar.DAY_OF_YEAR) == cal2
|
||||||
|
.get(Calendar.DAY_OF_YEAR);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String lastseen(Context context, long time) {
|
public static String lastseen(Context context, long time) {
|
||||||
if (time==0) {
|
if (time == 0) {
|
||||||
return context.getString(R.string.never_seen);
|
return context.getString(R.string.never_seen);
|
||||||
}
|
}
|
||||||
long difference = (System.currentTimeMillis() - time) / 1000;
|
long difference = (System.currentTimeMillis() - time) / 1000;
|
||||||
|
@ -94,20 +98,24 @@ public class UIHelper {
|
||||||
} else if (difference < 60 * 2) {
|
} else if (difference < 60 * 2) {
|
||||||
return context.getString(R.string.last_seen_min);
|
return context.getString(R.string.last_seen_min);
|
||||||
} else if (difference < 60 * 60) {
|
} else if (difference < 60 * 60) {
|
||||||
return context.getString(R.string.last_seen_mins,Math.round(difference/60.0));
|
return context.getString(R.string.last_seen_mins,
|
||||||
|
Math.round(difference / 60.0));
|
||||||
} else if (difference < 60 * 60 * 2) {
|
} else if (difference < 60 * 60 * 2) {
|
||||||
return context.getString(R.string.last_seen_hour);
|
return context.getString(R.string.last_seen_hour);
|
||||||
} else if (difference < 60 * 60 * 24) {
|
} else if (difference < 60 * 60 * 24) {
|
||||||
return context.getString(R.string.last_seen_hours,Math.round(difference/(60.0*60.0)));
|
return context.getString(R.string.last_seen_hours,
|
||||||
|
Math.round(difference / (60.0 * 60.0)));
|
||||||
} else if (difference < 60 * 60 * 48) {
|
} else if (difference < 60 * 60 * 48) {
|
||||||
return context.getString(R.string.last_seen_day);
|
return context.getString(R.string.last_seen_day);
|
||||||
} else {
|
} else {
|
||||||
return context.getString(R.string.last_seen_days,Math.round(difference/(60.0*60.0*24.0)));
|
return context.getString(R.string.last_seen_days,
|
||||||
|
Math.round(difference / (60.0 * 60.0 * 24.0)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static int getRealPx(int dp, Context context) {
|
public static int getRealPx(int dp, Context context) {
|
||||||
final DisplayMetrics metrics = context.getResources().getDisplayMetrics();
|
final DisplayMetrics metrics = context.getResources()
|
||||||
|
.getDisplayMetrics();
|
||||||
return ((int) (dp * metrics.density));
|
return ((int) (dp * metrics.density));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -117,27 +125,27 @@ public class UIHelper {
|
||||||
return holoColors[(int) ((name.hashCode() & 0xffffffffl) % holoColors.length)];
|
return holoColors[(int) ((name.hashCode() & 0xffffffffl) % holoColors.length)];
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void drawTile(Canvas canvas, String letter, int tileColor, int textColor, int left, int top, int right, int bottom) {
|
private static void drawTile(Canvas canvas, String letter, int tileColor,
|
||||||
|
int textColor, int left, int top, int right, int bottom) {
|
||||||
Paint tilePaint = new Paint(), textPaint = new Paint();
|
Paint tilePaint = new Paint(), textPaint = new Paint();
|
||||||
tilePaint.setColor(tileColor);
|
tilePaint.setColor(tileColor);
|
||||||
textPaint.setColor(textColor);
|
textPaint.setColor(textColor);
|
||||||
textPaint.setTypeface(Typeface.create("sans-serif-light", Typeface.NORMAL));
|
textPaint.setTypeface(Typeface.create("sans-serif-light",
|
||||||
|
Typeface.NORMAL));
|
||||||
textPaint.setTextSize((float) ((right - left) * 0.8));
|
textPaint.setTextSize((float) ((right - left) * 0.8));
|
||||||
Rect rect = new Rect();
|
Rect rect = new Rect();
|
||||||
|
|
||||||
canvas.drawRect(new Rect(left, top, right, bottom), tilePaint);
|
canvas.drawRect(new Rect(left, top, right, bottom), tilePaint);
|
||||||
textPaint.getTextBounds(letter, 0, 1, rect);
|
textPaint.getTextBounds(letter, 0, 1, rect);
|
||||||
float width = textPaint.measureText(letter);
|
float width = textPaint.measureText(letter);
|
||||||
canvas.drawText(letter,
|
canvas.drawText(letter, (right + left) / 2 - width / 2, (top + bottom)
|
||||||
(right+left)/2 - width/2,
|
/ 2 + rect.height() / 2, textPaint);
|
||||||
(top+bottom)/2 + rect.height()/2,
|
|
||||||
textPaint);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Bitmap getUnknownContactPicture(String[] names, int size, int bgColor, int fgColor) {
|
private static Bitmap getUnknownContactPicture(String[] names, int size,
|
||||||
int tiles = (names.length > 4)? 4 :
|
int bgColor, int fgColor) {
|
||||||
(names.length < 1)? 1 :
|
int tiles = (names.length > 4) ? 4 : (names.length < 1) ? 1
|
||||||
names.length;
|
: names.length;
|
||||||
Bitmap bitmap = Bitmap
|
Bitmap bitmap = Bitmap
|
||||||
.createBitmap(size, size, Bitmap.Config.ARGB_8888);
|
.createBitmap(size, size, Bitmap.Config.ARGB_8888);
|
||||||
Canvas canvas = new Canvas(bitmap);
|
Canvas canvas = new Canvas(bitmap);
|
||||||
|
@ -148,9 +156,9 @@ public class UIHelper {
|
||||||
letters[0] = "?";
|
letters[0] = "?";
|
||||||
colors[0] = 0xFFe92727;
|
colors[0] = 0xFFe92727;
|
||||||
} else {
|
} else {
|
||||||
for(int i = 0; i < tiles; ++i) {
|
for (int i = 0; i < tiles; ++i) {
|
||||||
letters[i] = (names[i].length() > 0) ?
|
letters[i] = (names[i].length() > 0) ? names[i].substring(0, 1)
|
||||||
names[i].substring(0, 1).toUpperCase(Locale.US) : " ";
|
.toUpperCase(Locale.US) : " ";
|
||||||
colors[i] = getNameColor(names[i]);
|
colors[i] = getNameColor(names[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -162,76 +170,79 @@ public class UIHelper {
|
||||||
|
|
||||||
bitmap.eraseColor(bgColor);
|
bitmap.eraseColor(bgColor);
|
||||||
|
|
||||||
switch(tiles) {
|
switch (tiles) {
|
||||||
case 1:
|
case 1:
|
||||||
drawTile(canvas, letters[0], colors[0], fgColor,
|
drawTile(canvas, letters[0], colors[0], fgColor, 0, 0, size, size);
|
||||||
0, 0, size, size);
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 2:
|
case 2:
|
||||||
drawTile(canvas, letters[0], colors[0], fgColor,
|
drawTile(canvas, letters[0], colors[0], fgColor, 0, 0,
|
||||||
0, 0, size/2 - 1, size);
|
size / 2 - 1, size);
|
||||||
drawTile(canvas, letters[1], colors[1], fgColor,
|
drawTile(canvas, letters[1], colors[1], fgColor, size / 2 + 1, 0,
|
||||||
size/2 + 1, 0, size, size);
|
size, size);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 3:
|
case 3:
|
||||||
drawTile(canvas, letters[0], colors[0], fgColor,
|
drawTile(canvas, letters[0], colors[0], fgColor, 0, 0,
|
||||||
0, 0, size/2 - 1, size);
|
size / 2 - 1, size);
|
||||||
drawTile(canvas, letters[1], colors[1], fgColor,
|
drawTile(canvas, letters[1], colors[1], fgColor, size / 2 + 1, 0,
|
||||||
size/2 + 1, 0, size, size/2 - 1);
|
size, size / 2 - 1);
|
||||||
drawTile(canvas, letters[2], colors[2], fgColor,
|
drawTile(canvas, letters[2], colors[2], fgColor, size / 2 + 1,
|
||||||
size/2 + 1, size/2 + 1, size, size);
|
size / 2 + 1, size, size);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 4:
|
case 4:
|
||||||
drawTile(canvas, letters[0], colors[0], fgColor,
|
drawTile(canvas, letters[0], colors[0], fgColor, 0, 0,
|
||||||
0, 0, size/2 - 1, size/2 - 1);
|
size / 2 - 1, size / 2 - 1);
|
||||||
drawTile(canvas, letters[1], colors[1], fgColor,
|
drawTile(canvas, letters[1], colors[1], fgColor, 0, size / 2 + 1,
|
||||||
0, size/2 + 1, size/2 - 1, size);
|
size / 2 - 1, size);
|
||||||
drawTile(canvas, letters[2], colors[2], fgColor,
|
drawTile(canvas, letters[2], colors[2], fgColor, size / 2 + 1, 0,
|
||||||
size/2 + 1, 0, size, size/2 - 1);
|
size, size / 2 - 1);
|
||||||
drawTile(canvas, letters[3], colors[3], fgColor,
|
drawTile(canvas, letters[3], colors[3], fgColor, size / 2 + 1,
|
||||||
size/2 + 1, size/2 + 1, size, size);
|
size / 2 + 1, size, size);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
return bitmap;
|
return bitmap;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Bitmap getMucContactPicture(Conversation conversation, int size, int bgColor, int fgColor) {
|
private static Bitmap getMucContactPicture(Conversation conversation,
|
||||||
|
int size, int bgColor, int fgColor) {
|
||||||
List<User> members = conversation.getMucOptions().getUsers();
|
List<User> members = conversation.getMucOptions().getUsers();
|
||||||
if (members.size() == 0) {
|
if (members.size() == 0) {
|
||||||
return getUnknownContactPicture(new String[]{conversation.getName(false)}, size, bgColor, fgColor);
|
return getUnknownContactPicture(
|
||||||
|
new String[] { conversation.getName(false) }, size,
|
||||||
|
bgColor, fgColor);
|
||||||
}
|
}
|
||||||
String[] names = new String[members.size()+1];
|
String[] names = new String[members.size() + 1];
|
||||||
names[0] = conversation.getMucOptions().getNick();
|
names[0] = conversation.getMucOptions().getNick();
|
||||||
for(int i = 0; i < members.size(); ++i) {
|
for (int i = 0; i < members.size(); ++i) {
|
||||||
names[i+1] = members.get(i).getName();
|
names[i + 1] = members.get(i).getName();
|
||||||
}
|
}
|
||||||
|
|
||||||
return getUnknownContactPicture(names, size, bgColor, fgColor);
|
return getUnknownContactPicture(names, size, bgColor, fgColor);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Bitmap getContactPicture(Conversation conversation, int dpSize, Context context, boolean notification) {
|
public static Bitmap getContactPicture(Conversation conversation,
|
||||||
if(conversation.getMode() == Conversation.MODE_SINGLE) {
|
int dpSize, Context context, boolean notification) {
|
||||||
|
if (conversation.getMode() == Conversation.MODE_SINGLE) {
|
||||||
return getContactPicture(conversation.getContact(), dpSize,
|
return getContactPicture(conversation.getContact(), dpSize,
|
||||||
context, notification);
|
context, notification);
|
||||||
} else{
|
} else {
|
||||||
int fgColor = UIHelper.FG_COLOR,
|
int fgColor = UIHelper.FG_COLOR, bgColor = (notification) ? UIHelper.BG_COLOR
|
||||||
bgColor = (notification) ?
|
: UIHelper.TRANSPARENT;
|
||||||
UIHelper.BG_COLOR : UIHelper.TRANSPARENT;
|
|
||||||
|
|
||||||
return getMucContactPicture(conversation, getRealPx(dpSize, context),
|
return getMucContactPicture(conversation,
|
||||||
bgColor, fgColor);
|
getRealPx(dpSize, context), bgColor, fgColor);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Bitmap getContactPicture(Contact contact, int dpSize, Context context, boolean notification) {
|
public static Bitmap getContactPicture(Contact contact, int dpSize,
|
||||||
|
Context context, boolean notification) {
|
||||||
String uri = contact.getProfilePhoto();
|
String uri = contact.getProfilePhoto();
|
||||||
if (uri==null) {
|
if (uri == null) {
|
||||||
return getContactPicture(contact.getDisplayName(), dpSize,
|
return getContactPicture(contact.getDisplayName(), dpSize, context,
|
||||||
context, notification);
|
notification);
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
Bitmap bm = BitmapFactory.decodeStream(context.getContentResolver()
|
Bitmap bm = BitmapFactory.decodeStream(context.getContentResolver()
|
||||||
|
@ -239,38 +250,42 @@ public class UIHelper {
|
||||||
return Bitmap.createScaledBitmap(bm, getRealPx(dpSize, context),
|
return Bitmap.createScaledBitmap(bm, getRealPx(dpSize, context),
|
||||||
getRealPx(dpSize, context), false);
|
getRealPx(dpSize, context), false);
|
||||||
} catch (FileNotFoundException e) {
|
} catch (FileNotFoundException e) {
|
||||||
return getContactPicture(contact.getDisplayName(), dpSize,
|
return getContactPicture(contact.getDisplayName(), dpSize, context,
|
||||||
context, notification);
|
notification);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Bitmap getContactPicture(String name, int dpSize, Context context, boolean notification) {
|
public static Bitmap getContactPicture(String name, int dpSize,
|
||||||
int fgColor = UIHelper.FG_COLOR,
|
Context context, boolean notification) {
|
||||||
bgColor = (notification) ?
|
int fgColor = UIHelper.FG_COLOR, bgColor = (notification) ? UIHelper.BG_COLOR
|
||||||
UIHelper.BG_COLOR : UIHelper.TRANSPARENT;
|
: UIHelper.TRANSPARENT;
|
||||||
|
|
||||||
return getUnknownContactPicture(new String[]{name}, getRealPx(dpSize, context),
|
return getUnknownContactPicture(new String[] { name },
|
||||||
bgColor, fgColor);
|
getRealPx(dpSize, context), bgColor, fgColor);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void showErrorNotification(Context context, List<Account> accounts) {
|
public static void showErrorNotification(Context context,
|
||||||
|
List<Account> accounts) {
|
||||||
NotificationManager mNotificationManager = (NotificationManager) context
|
NotificationManager mNotificationManager = (NotificationManager) context
|
||||||
.getSystemService(Context.NOTIFICATION_SERVICE);
|
.getSystemService(Context.NOTIFICATION_SERVICE);
|
||||||
List<Account> accountsWproblems = new ArrayList<Account>();
|
List<Account> accountsWproblems = new ArrayList<Account>();
|
||||||
for(Account account : accounts) {
|
for (Account account : accounts) {
|
||||||
if (account.hasErrorStatus()) {
|
if (account.hasErrorStatus()) {
|
||||||
accountsWproblems.add(account);
|
accountsWproblems.add(account);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context);
|
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(
|
||||||
|
context);
|
||||||
if (accountsWproblems.size() == 0) {
|
if (accountsWproblems.size() == 0) {
|
||||||
mNotificationManager.cancel(1111);
|
mNotificationManager.cancel(1111);
|
||||||
return;
|
return;
|
||||||
} else if (accountsWproblems.size() == 1) {
|
} else if (accountsWproblems.size() == 1) {
|
||||||
mBuilder.setContentTitle(context.getString(R.string.problem_connecting_to_account));
|
mBuilder.setContentTitle(context
|
||||||
|
.getString(R.string.problem_connecting_to_account));
|
||||||
mBuilder.setContentText(accountsWproblems.get(0).getJid());
|
mBuilder.setContentText(accountsWproblems.get(0).getJid());
|
||||||
} else {
|
} else {
|
||||||
mBuilder.setContentTitle(context.getString(R.string.problem_connecting_to_accounts));
|
mBuilder.setContentTitle(context
|
||||||
|
.getString(R.string.problem_connecting_to_accounts));
|
||||||
mBuilder.setContentText(context.getString(R.string.touch_to_fix));
|
mBuilder.setContentText(context.getString(R.string.touch_to_fix));
|
||||||
}
|
}
|
||||||
mBuilder.setOngoing(true);
|
mBuilder.setOngoing(true);
|
||||||
|
@ -283,8 +298,8 @@ public class UIHelper {
|
||||||
ManageAccountActivity.class);
|
ManageAccountActivity.class);
|
||||||
stackBuilder.addNextIntent(manageAccountsIntent);
|
stackBuilder.addNextIntent(manageAccountsIntent);
|
||||||
|
|
||||||
PendingIntent resultPendingIntent = stackBuilder.getPendingIntent(
|
PendingIntent resultPendingIntent = stackBuilder.getPendingIntent(0,
|
||||||
0, PendingIntent.FLAG_UPDATE_CURRENT);
|
PendingIntent.FLAG_UPDATE_CURRENT);
|
||||||
|
|
||||||
mBuilder.setContentIntent(resultPendingIntent);
|
mBuilder.setContentIntent(resultPendingIntent);
|
||||||
Notification notification = mBuilder.build();
|
Notification notification = mBuilder.build();
|
||||||
|
@ -292,24 +307,30 @@ public class UIHelper {
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Pattern generateNickHighlightPattern(String nick) {
|
private static Pattern generateNickHighlightPattern(String nick) {
|
||||||
// We expect a word boundary, i.e. space or start of string, followed by the
|
// We expect a word boundary, i.e. space or start of string, followed by
|
||||||
|
// the
|
||||||
// nick (matched in case-insensitive manner), followed by optional
|
// nick (matched in case-insensitive manner), followed by optional
|
||||||
// punctuation (for example "bob: i disagree" or "how are you alice?"),
|
// punctuation (for example "bob: i disagree" or "how are you alice?"),
|
||||||
// followed by another word boundary.
|
// followed by another word boundary.
|
||||||
return Pattern.compile("\\b"+nick+"\\p{Punct}?\\b",
|
return Pattern.compile("\\b" + nick + "\\p{Punct}?\\b",
|
||||||
Pattern.CASE_INSENSITIVE | Pattern.UNICODE_CASE);
|
Pattern.CASE_INSENSITIVE | Pattern.UNICODE_CASE);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void updateNotification(Context context,
|
public static void updateNotification(Context context,
|
||||||
List<Conversation> conversations, Conversation currentCon, boolean notify) {
|
List<Conversation> conversations, Conversation currentCon,
|
||||||
|
boolean notify) {
|
||||||
NotificationManager mNotificationManager = (NotificationManager) context
|
NotificationManager mNotificationManager = (NotificationManager) context
|
||||||
.getSystemService(Context.NOTIFICATION_SERVICE);
|
.getSystemService(Context.NOTIFICATION_SERVICE);
|
||||||
|
|
||||||
SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(context);
|
SharedPreferences preferences = PreferenceManager
|
||||||
|
.getDefaultSharedPreferences(context);
|
||||||
boolean useSubject = preferences.getBoolean("use_subject_in_muc", true);
|
boolean useSubject = preferences.getBoolean("use_subject_in_muc", true);
|
||||||
boolean showNofifications = preferences.getBoolean("show_notification",true);
|
boolean showNofifications = preferences.getBoolean("show_notification",
|
||||||
boolean vibrate = preferences.getBoolean("vibrate_on_notification", true);
|
true);
|
||||||
boolean alwaysNotify = preferences.getBoolean("notify_in_conversation_when_highlighted", false);
|
boolean vibrate = preferences.getBoolean("vibrate_on_notification",
|
||||||
|
true);
|
||||||
|
boolean alwaysNotify = preferences.getBoolean(
|
||||||
|
"notify_in_conversation_when_highlighted", false);
|
||||||
|
|
||||||
if (!showNofifications) {
|
if (!showNofifications) {
|
||||||
mNotificationManager.cancel(2342);
|
mNotificationManager.cancel(2342);
|
||||||
|
@ -318,17 +339,21 @@ public class UIHelper {
|
||||||
|
|
||||||
String targetUuid = "";
|
String targetUuid = "";
|
||||||
|
|
||||||
if ((currentCon != null) &&(currentCon.getMode() == Conversation.MODE_MULTI)&&(!alwaysNotify)) {
|
if ((currentCon != null)
|
||||||
|
&& (currentCon.getMode() == Conversation.MODE_MULTI)
|
||||||
|
&& (!alwaysNotify)) {
|
||||||
String nick = currentCon.getMucOptions().getNick();
|
String nick = currentCon.getMucOptions().getNick();
|
||||||
Pattern highlight = generateNickHighlightPattern(nick);
|
Pattern highlight = generateNickHighlightPattern(nick);
|
||||||
Matcher m = highlight.matcher(currentCon.getLatestMessage().getBody());
|
Matcher m = highlight.matcher(currentCon.getLatestMessage()
|
||||||
|
.getBody());
|
||||||
notify = m.find();
|
notify = m.find();
|
||||||
}
|
}
|
||||||
|
|
||||||
List<Conversation> unread = new ArrayList<Conversation>();
|
List<Conversation> unread = new ArrayList<Conversation>();
|
||||||
for (Conversation conversation : conversations) {
|
for (Conversation conversation : conversations) {
|
||||||
if (conversation.getMode() == Conversation.MODE_MULTI) {
|
if (conversation.getMode() == Conversation.MODE_MULTI) {
|
||||||
if ((!conversation.isRead())&&((wasHighlighted(conversation)||(alwaysNotify)))) {
|
if ((!conversation.isRead())
|
||||||
|
&& ((wasHighlighted(conversation) || (alwaysNotify)))) {
|
||||||
unread.add(conversation);
|
unread.add(conversation);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
@ -351,7 +376,8 @@ public class UIHelper {
|
||||||
context, true));
|
context, true));
|
||||||
mBuilder.setContentTitle(conversation.getName(useSubject));
|
mBuilder.setContentTitle(conversation.getName(useSubject));
|
||||||
if (notify) {
|
if (notify) {
|
||||||
mBuilder.setTicker(conversation.getLatestMessage().getReadableBody(context));
|
mBuilder.setTicker(conversation.getLatestMessage()
|
||||||
|
.getReadableBody(context));
|
||||||
}
|
}
|
||||||
StringBuilder bigText = new StringBuilder();
|
StringBuilder bigText = new StringBuilder();
|
||||||
List<Message> messages = conversation.getMessages();
|
List<Message> messages = conversation.getMessages();
|
||||||
|
@ -374,7 +400,8 @@ public class UIHelper {
|
||||||
.bigText(bigText.toString()));
|
.bigText(bigText.toString()));
|
||||||
} else {
|
} else {
|
||||||
NotificationCompat.InboxStyle style = new NotificationCompat.InboxStyle();
|
NotificationCompat.InboxStyle style = new NotificationCompat.InboxStyle();
|
||||||
style.setBigContentTitle(unread.size() + " " + context.getString(R.string.unread_conversations));
|
style.setBigContentTitle(unread.size() + " "
|
||||||
|
+ context.getString(R.string.unread_conversations));
|
||||||
StringBuilder names = new StringBuilder();
|
StringBuilder names = new StringBuilder();
|
||||||
for (int i = 0; i < unread.size(); ++i) {
|
for (int i = 0; i < unread.size(); ++i) {
|
||||||
targetUuid = unread.get(i).getUuid();
|
targetUuid = unread.get(i).getUuid();
|
||||||
|
@ -383,22 +410,26 @@ public class UIHelper {
|
||||||
} else {
|
} else {
|
||||||
names.append(unread.get(i).getName(useSubject));
|
names.append(unread.get(i).getName(useSubject));
|
||||||
}
|
}
|
||||||
style.addLine(Html.fromHtml("<b>" + unread.get(i).getName(useSubject)
|
style.addLine(Html.fromHtml("<b>"
|
||||||
+ "</b> " + unread.get(i).getLatestMessage().getReadableBody(context)));
|
+ unread.get(i).getName(useSubject)
|
||||||
|
+ "</b> "
|
||||||
|
+ unread.get(i).getLatestMessage()
|
||||||
|
.getReadableBody(context)));
|
||||||
}
|
}
|
||||||
mBuilder.setContentTitle(unread.size() + " " + context.getString(R.string.unread_conversations));
|
mBuilder.setContentTitle(unread.size() + " "
|
||||||
|
+ context.getString(R.string.unread_conversations));
|
||||||
mBuilder.setContentText(names.toString());
|
mBuilder.setContentText(names.toString());
|
||||||
mBuilder.setStyle(style);
|
mBuilder.setStyle(style);
|
||||||
}
|
}
|
||||||
if ((currentCon!=null)&&(notify)) {
|
if ((currentCon != null) && (notify)) {
|
||||||
targetUuid=currentCon.getUuid();
|
targetUuid = currentCon.getUuid();
|
||||||
}
|
}
|
||||||
if (unread.size() != 0) {
|
if (unread.size() != 0) {
|
||||||
mBuilder.setSmallIcon(R.drawable.ic_notification);
|
mBuilder.setSmallIcon(R.drawable.ic_notification);
|
||||||
if (notify) {
|
if (notify) {
|
||||||
if (vibrate) {
|
if (vibrate) {
|
||||||
int dat = 70;
|
int dat = 70;
|
||||||
long[] pattern = {0,3*dat,dat,dat};
|
long[] pattern = { 0, 3 * dat, dat, dat };
|
||||||
mBuilder.setVibrate(pattern);
|
mBuilder.setVibrate(pattern);
|
||||||
}
|
}
|
||||||
mBuilder.setLights(0xffffffff, 2000, 4000);
|
mBuilder.setLights(0xffffffff, 2000, 4000);
|
||||||
|
@ -433,7 +464,7 @@ public class UIHelper {
|
||||||
List<Message> messages = conversation.getMessages();
|
List<Message> messages = conversation.getMessages();
|
||||||
String nick = conversation.getMucOptions().getNick();
|
String nick = conversation.getMucOptions().getNick();
|
||||||
Pattern highlight = generateNickHighlightPattern(nick);
|
Pattern highlight = generateNickHighlightPattern(nick);
|
||||||
for(int i = messages.size() - 1; i >= 0; --i) {
|
for (int i = messages.size() - 1; i >= 0; --i) {
|
||||||
if (messages.get(i).isRead()) {
|
if (messages.get(i).isRead()) {
|
||||||
break;
|
break;
|
||||||
} else {
|
} else {
|
||||||
|
@ -453,7 +484,8 @@ public class UIHelper {
|
||||||
long id = Long.parseLong(systemAccount[0]);
|
long id = Long.parseLong(systemAccount[0]);
|
||||||
badge.assignContactUri(Contacts.getLookupUri(id, systemAccount[1]));
|
badge.assignContactUri(Contacts.getLookupUri(id, systemAccount[1]));
|
||||||
}
|
}
|
||||||
badge.setImageBitmap(UIHelper.getContactPicture(contact, 72, context, false));
|
badge.setImageBitmap(UIHelper.getContactPicture(contact, 72, context,
|
||||||
|
false));
|
||||||
}
|
}
|
||||||
|
|
||||||
public static AlertDialog getVerifyFingerprintDialog(
|
public static AlertDialog getVerifyFingerprintDialog(
|
||||||
|
@ -489,7 +521,8 @@ public class UIHelper {
|
||||||
return builder.create();
|
return builder.create();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Bitmap getSelfContactPicture(Account account, int size, boolean showPhoneSelfContactPicture, Context context) {
|
public static Bitmap getSelfContactPicture(Account account, int size,
|
||||||
|
boolean showPhoneSelfContactPicture, Context context) {
|
||||||
if (showPhoneSelfContactPicture) {
|
if (showPhoneSelfContactPicture) {
|
||||||
Uri selfiUri = PhoneHelper.getSefliUri(context);
|
Uri selfiUri = PhoneHelper.getSefliUri(context);
|
||||||
if (selfiUri != null) {
|
if (selfiUri != null) {
|
||||||
|
@ -497,7 +530,8 @@ public class UIHelper {
|
||||||
return BitmapFactory.decodeStream(context
|
return BitmapFactory.decodeStream(context
|
||||||
.getContentResolver().openInputStream(selfiUri));
|
.getContentResolver().openInputStream(selfiUri));
|
||||||
} catch (FileNotFoundException e) {
|
} catch (FileNotFoundException e) {
|
||||||
return getContactPicture(account.getJid(), size, context, false);
|
return getContactPicture(account.getJid(), size, context,
|
||||||
|
false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return getContactPicture(account.getJid(), size, context, false);
|
return getContactPicture(account.getJid(), size, context, false);
|
||||||
|
|
Loading…
Reference in a new issue