I want to show a list of items when the user clicks an overlay item on a map. The user should be able to select any of these items and edit them. The list can have many items (more than that can fit in one active screen) therefore it needs to be scrollable.

Any ideas will be appreciated.

Thanks in advance.

link|improve this question

feedback

1 Answer

You could do it with an activity with a transparent background, then launch that activity on top. From there you can make the list editable, by using a custom list adapter & updating the data contained within the adapter.

link|improve this answer
Do you have any example/open source project that does something similar? Thanks. – Soumya Simanta Jul 9 '10 at 16:18
in your application manifest, just add android:theme="@android:style/Theme.Dialog" to the activity where you're rendering the list. – Ben Jul 9 '10 at 17:25
feedback

Your Answer

 
or
required, but never shown

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