Add Searchview in Actionbar and listen for extension/open method

Source: Internet
Author: User

First, set the Actionviewclass in XML

<item android:id= "@+id/m1"        android:title= "setting"        android:icon= "@drawable/abc_ic_ Search_api_mtrl_alpha "        android:showasaction=" Always|collapseactionview "        android: Actionviewclass= "Android.widget.SearchView"/>

Then get the menu instance in the Oncreateoptionmenu method and set the listener

 Public BooleanOncreateoptionsmenu (Menu menu) {getmenuinflater (). Inflate (R.menu.optionmenu, menu); MenuItem Search=Menu.finditem (R.ID.M1); Searchview Searchview=(Searchview) Search.getactionview (); Menuitemcompat.setonactionexpandlistener (Search,NewMenuitemcompat.onactionexpandlistener () {@Override Public Booleanonmenuitemactioncollapse (MenuItem item) {//Do something when collapsedToast.maketext (mainactivity. This, "Hello expand", Toast.length_long). Show (); return true;//Return True to collapse action view} @Override Public BooleanOnmenuitemactionexpand (MenuItem item) {//Do something when expandedToast.maketext (mainactivity. This, "Hello expand", Toast.length_long). Show (); return true;//Return True to expand action View            }        }); return true; }

Note how to add a listener

Add Searchview in Actionbar and listen for extension/open method

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.