Add support for users with empty name
This commit is contained in:
parent
9502ff25dd
commit
7db21136a3
|
@ -66,7 +66,7 @@ public class UIHelper {
|
|||
}
|
||||
|
||||
private static Bitmap getUnknownContactPicture(String name, int size) {
|
||||
String firstLetter = name.substring(0, 1).toUpperCase(Locale.US);
|
||||
String firstLetter = (name.length() > 0) ? name.substring(0, 1).toUpperCase(Locale.US) : " ";
|
||||
|
||||
int holoColors[] = { 0xFF1da9da, 0xFFb368d9, 0xFF83b600, 0xFFffa713,
|
||||
0xFFe92727 };
|
||||
|
|
Loading…
Reference in a new issue