oak
oak

Reputation: 137

'Full screen' menu for Android

I am quite new to android development and I have the need to present the user with a 'full screen' menu, instead of an options or context menus.

I thought about using a ListView filled with an ArrayAdapter, but I don't know if there's a smarter/easier way.

Any ideas?

Thanks!

Upvotes: 2

Views: 2101

Answers (1)

CoolStraw
CoolStraw

Reputation: 5390

Using a ListView sounds good to me.

You could make your activity full screen (see http://thedevelopersinfo.com/2009/10/21/making-an-fullscreen-activity-in-android/), put a listview in it and fill it with your items I don't see any problem in this way of doing.

Upvotes: 1

Related Questions