One more question when I declare a test HashMap it seems only to work as
static private static final Map<Integer, String> myHashMap = new
HashMap<Integer, String>(); static { myHashMap.put(1, "one");
myHashMap.put(2, "two"); } and I am unable to access the HashMap outside of
the brackets. So new ArrayList<String>(MyHashMap.KeySet()) fails as
MyHashMap cannot be resolved ... ?-- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

