Here is the code I am using. Currently I get and Location to appear
but image doesnt.

    mAdapter = new SimpleExpandableListAdapter(
                                this,
                                groupData,
                                android.R.layout.simple_expandable_list_item_2,
                                new String[] {IMAGE, NAME},
                                new int[] {R.id.image, android.R.id.text1 },
                                childData,
                                android.R.layout.simple_expandable_list_item_2,
                                new String[] {IMAGE, NAME, LOCATION },
                                new int[] {R.id.image, android.R.id.text1,
android.R.id.text2 }
                                );
                        Log.d("Leo's Tag", mAdapter.toString());
                        setListAdapter(mAdapter);

So the IMAGE string is url to web address with a thumbnail size image.
I think I am missing could to convert the URL into a image raw or an
ImageView. If someone would be most kind and direct me in the proper
direction to implement this or if someone knows how to convert online
url to image and would share their code I would be most great full.

-- 
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

Reply via email to