Use details and optimization of MenuItem on android-Actionbar

Source: Internet
Author: User

Use details and optimization of MenuItem on android-Actionbar

MenuItem is an element on actionbar. This control is often used in uidesign.

Usage:

1. Compile the menu. xml resource file

 

    You can set the icon file, but the display effect may not be very good. 

 

ShowAsAction indicates whether it appears in actinbar. Commonly Used always, ifroom, and never;

 

2. Load in action:

 

    @Override    public boolean onCreateOptionsMenu(Menu menu) {        getMenuInflater().inflate(R.menu.menu_main, menu);        return true;    }

Note: You can customize the properties of a button, just like a custom control,

 

First, write the layout file:

 

 
 

Then, you only need to add several lines of code to the oncreateMenu () method of action, locate the actionitem, and call the setActionView () method.

 

 

    @Override    public boolean onCreateOptionsMenu(Menu menu) {        getMenuInflater().inflate(R.menu.menu_main, menu);        inBoxMenuItem = menu.findItem(R.id.action_inbox);        inBoxMenuItem.setActionView(R.layout.menu_item_view);        return true;    }



 

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.