我必须更换操作栏以实现设计团队想要的新UI模式
现在,动作栏已被工具栏取代,但工具栏对象比动作栏大,但只是很小,但很明显且不合适
这是XML声明
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toolbar"
android:layout_height="?attr/actionBarSize"
android:layout_width="match_parent"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary" />
如何缩小尺寸?我以前能够依赖已为每个屏幕大小预定义的actionBarSize
,我可以输入特定的dp值,但这是该对象的解决方案吗?
由于
答案 0 :(得分:2)
?attr / actionBarSize为56dp,带有新的支持lib。所以,即使你坚持使用动作栏,你也会获得更大的尺寸。在主题中设置actionBarSize。