Skip to content Skip to sidebar Skip to footer

Creating A Custom Hashmapadapter

If I have a hashmap containing the following: Hashmap contains (String, String) How can I instantiate a custom adapter? The custom adapter should extend baseadapter. I need to co

Solution 1:

I don't think you need to use a custom adapter. Your layout is quite simple, you need only a textView, so you can use ArrayAdapter. For you example you can do:

HashMap<Integer,String>hm=new HashMap<Integer,String>();
Vector<String>elements=new Vector<String>();
 for(int i=0; i<=10;i){      
      hm.put(i,("num"+i));
    }
    for (Entry<Integer, String> e : hm.entrySet()) {
        String newString=e.toString();
        elements.add(newString);
    }
    ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, elements);
    list.setAdapter(adapter);

Post a Comment for "Creating A Custom Hashmapadapter"