Android learning notes (5): SubMenu

Source: Internet
Author: User

How to Create a SubMenu:

Call the addSubMenu () method of Menu to add a sub-Menu.

Call the add () method of SubMenu,

Override the onContextItemSelected () method to respond to the Click Event of the sub-menu,


[Java] public class TestActivity extends Activity {
TextView textView;
@ Override
Public void onCreate (Bundle savedInstanceState ){
Super. onCreate (savedInstanceState );
SetContentView (R. layout. main );
TextView = (TextView) findViewById (R. id. textView1 );
}

Public boolean onCreateOptionsMenu (Menu menu ){
// Call the addSubMenu () method of Menu to add a sub Menu
SubMenu file = menu. addSubMenu ("file ");
SubMenu edit = menu. addSubMenu ("edit ");
// Add a sub-menu
File. add (0, Menu. FIRST + 1, 0, "new ");
File. add (0, Menu. FIRST + 2, 0, "open ");
Return true;
}
// Override the onContextItemSelected () method to respond to the Click Event of the sub-menu.
Public boolean onOptionsItemSelected (MenuItem item ){
If (item. getItemId () = Menu. FIRST + 1 ){
TextView. setText ("You selected" new "");
}
If (item. getItemId () = Menu. FIRST + 2 ){
TextView. setText ("You selected" open "");
}
Return true;
}
}



From Hu HU's column

Related Article

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.