Android Learning: Menu Menus Practice

Source: Internet
Author: User

1: Create a new main.xml under Res/menu

<span style= "FONT-SIZE:18PX;" ><menu xmlns:android= "Http://schemas.android.com/apk/res/android" >     <item android:id= "@+id/option "Android:title=" @string/menu_setting ">           <!--can add sub MenuItem here--      </item>       < Item android:id= "@+id/exit" android:title= "@string/menu_exit" >       </item>   </menu></span >
<span style= "FONT-SIZE:18PX;" ></span>
<span style= "Font-size:18px;background-color:rgb (102, 255, 255); >2: Load menu in Activity </span>
<span style= "FONT-SIZE:18PX;" ></span><pre name= "code" class= "java" >       /** * Load Menu */@Overridepublic Boolean oncreateoptionsmenu ( Menu menu) {menuinflater inflater = Getmenuinflater (); Inflater.inflate (R.menu.main, menu); return true;}


3: Add an event to the menu

       /** * Add an event to the menu */@Overridepublic boolean onoptionsitemselected (MenuItem item) {int item_id = Item.getitemid (); switch (item _id) {case r.id.option://does somethingbreak;case r.id.exit://do somethingsuper.finish ();d efault:break;} return true;}


Run:



Android Learning: Menu Menus Practice

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.