示例#1
0
 void dump() {
   synchronized (ContactsCache.this) {
     Log.d(TAG, "**** Contact cache dump ****");
     for (String key : mContactsHash.keySet()) {
       ArrayList<Contact> alc = mContactsHash.get(key);
       for (Contact c : alc) {
         Log.d(TAG, key + " ==> " + c.toString());
       }
     }
   }
 }