1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-24 02:12:15 -05:00

Changed hash based color calc to a hash indexed palette as discussed in the pull request.

This commit is contained in:
Stephan Fuhrmann 2013-07-23 21:46:03 +02:00
parent 3feaeb6903
commit 64212072c0

View File

@ -67,6 +67,23 @@ public class ContactPictureLoader {
*/
private final LruCache<String, int[]> mUnknownContactsCache;
private final static int CONTACT_DUMMY_COLORS_ARGB[] = {
0xffff0000, // 0 R, G, B
0xff00ff00,
0xff0000ff,
0xffff8000, // 3 mix ff with 80
0xff0080ff,
0xff80ff00,
0xff8000ff,
0xffff0080,
0xff00ff80,
0xff8040ff, // 9 mit 80 with 40 and ff
0xff80ff40,
0xffff4080,
0xffff8040,
0xff40ff80,
0xff4080ff,
};
public ContactPictureLoader(Context context, int defaultPictureResource) {
Context appContext = context.getApplicationContext();
@ -146,11 +163,7 @@ public class ContactPictureLoader {
private int calcUnknownContactColor(Address address) {
int val = address.getAddress().toLowerCase().hashCode();
int rgb =
(0xff) << 24 |
(~val & 0xff) << 16 |
(val & 0xff) << 8 |
(val>>>8 & 0xff);
int rgb = CONTACT_DUMMY_COLORS_ARGB[val % CONTACT_DUMMY_COLORS_ARGB.length];
return rgb;
}