jalandar wrote: > Hi > I am junior andriod developer. > In my application of active note .I want to create menu-item list of > main menu > e.g. > Options-->1.New note-->a.send ,b.delete,c.exit > 2.help > 3.exit > (Here Options is main menu ) > > when i click on Options there should be pop -up list of menu-items > (new note,help,exit) . > > plz provide me suggetions. how to create this application.
You want an options menu, typically defined in Activity#onCreateOptionsMenu() on onPrepareOptionsMenu(). To create your submenu, use Menu#addSubMenu(). If you have specific questions or problems with implementing option menus, write back! -- Mark Murphy (a Commons Guy) http://commonsware.com _The Busy Coder's Guide to Android Development_ Version 1.1 Published! --~--~---------~--~----~------------~-------~--~----~ 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] Announcing the new Android 0.9 SDK beta! http://android-developers.blogspot.com/2008/08/announcing-beta-release-of-android-sdk.html For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

