简体   繁体   中英

How to change size of a menu item in Android Toolbar?

How to change size of a menu item in Android Toolbar? I have a button, which is an image and I want to have it bigger than it is now.

Example screenshot: http://i.stack.imgur.com/Ygdeb.png

I think, it is just Android's new Action Bar

http://android-developers.blogspot.ru/2014/10/appcompat-v21-material-design-for-pre.html

Simply, you can use this with AppCompat v21 library included in your project:

<android.support.v7.widget.Toolbar
    android:id=”@+id/my_awesome_toolbar”
    android:layout_height=”wrap_content”
    android:layout_width=”match_parent”
    android:minHeight=”?attr/actionBarSize”
    android:background=”?attr/colorPrimary”>
     <--Your UI elements here-->
</android.support.v7.widget.Toolbar>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM