Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need a working example of an application that uses an expandableListView. I have no idea how to set data in it. I have tried with the new ArrayAdapter(...). But I can't figure out how to create the correct parameters.

I'm an experienced Pascal/VB/C/C++ but new to Java. I'm only requesting readymade code because that's the fastest way I learn ;)

Thanks in advance!

PS: I've used some code already but it needs some kind of resource out of the R, R.layout.simple_list_1. It's not declared anywhere but still most of the people seem to have it?

share|improve this question

2 Answers

The API demos are a great source for these basic examples

I've used some code already but it needs some kind of resource out of the R, R.layout.simple_list_1. It's not declared anywhere

That is a reference to an built-in XML layout document that is part of the Android OS. Use android.R.layout.simple_list_item_1 if you cannot resolve it.

share|improve this answer

check this one :

expandable list

hope it helps!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.