gpt4 book ai didi

Android 工具栏 minHeight 多余?

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:51:18 27 4
gpt4 key购买 nike

我构建的工具栏与大多数工具栏一样,minHeight 设置为 actionBarSize:

<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@color/colorPrimary"
android:minHeight="?actionBarSize"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light">
</android.support.v7.widget.Toolbar>

但是,如果我删除这个属性,就完全没有区别了。工具栏保持其 actionBarSize,即使我删除菜单并将应用程序名称设置为空 String,因此工具栏中根本没有显示任何内容。

这里有什么我遗漏的吗?

最佳答案

android:minHeight="?attr/actionBarSize"

minHeight 将确保您的工具栏不会自行调整为小于 ?attr/actionBarSize,无论 toolbar 中的内容有多小.

编辑

如果 toolbar 中没有任何内容,并且未设置 minHeight,则 toolbar 将具有默认高度 56dp 的 strong> 等于 ?attr/actionBarSize

所以为toolbar设置minHeight是多余的

更多详情,What's the height of the Android Toolbar?

关于Android 工具栏 minHeight 多余?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47888148/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com