gpt4 book ai didi

androidx AppBarLayout AppBar top margin问题

转载 作者:行者123 更新时间:2023-12-05 00:06:03 24 4
gpt4 key购买 nike

为什么 AppBar 会上升?以及如何解决?

附加信息。

如果您启动 Activity,然后立即启动此 fragment ,则一切正常。

如果您启动 Activity,然后是某个 fragment ,然后是这个 fragment ,那么一切都不好。

enter image description here

image. Android Studio layout designer - OK

image. API 16 - OK

xml布局code is here.

UPD。

<style name="EcommerceToolbar" parent="Widget.MaterialComponents.Toolbar">
<item name="android:theme">@style/ThemeOverlay.MaterialComponents.Dark.ActionBar</item>
<item name="popupTheme">@style/ThemeOverlay.MaterialComponents.Light</item>
</style>

最佳答案

尝试将 AppBarLayout 中的属性 layout_height 更改为 "?attr/actionBarSize":

<com.google.android.material.appbar.AppBarLayout
android:id="@+id/filter_list_appbar_layout"
app:liftOnScroll="false"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
>

关于androidx AppBarLayout AppBar top margin问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55826810/

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