如何更改Android工具栏中菜单项的大小?我有一个按钮,这是一个图像,我希望它比现在更大。
答案 0 :(得分:0)
我认为,这只是Android的新动作栏
http://android-developers.blogspot.ru/2014/10/appcompat-v21-material-design-for-pre.html
简单地说,您可以将其与项目中包含的AppCompat v21库一起使用:
<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>