透明状态栏与 *** 作栏重叠

透明状态栏与 *** 作栏重叠,第1张

概述实际结果:状态栏出现在 *** 作栏工具栏上方,并且该 *** 作栏内的MenuItem被切断.注意:“测试”是 *** 作栏的标题.预期结果: *** 作栏工具栏的顶部边界应直接显示在状态栏底部边界的下方,并且该 *** 作栏中的所有MenuItem都应完全可见.活动的XML布局:<FrameLayoutxmlns:android="http://sch

实际结果:状态栏出现在 *** 作栏工具栏上方,并且该 *** 作栏内的MenuItem被切断.注意:“测试”是 *** 作栏的标题.

预期结果:
*** 作栏工具栏的顶部边界应直接显示在状态栏底部边界的下方,并且该 *** 作栏中的所有MenuItem都应完全可见.

活动的XML布局:

<FrameLayout    xmlns:androID="http://schemas.androID.com/apk/res/androID"    xmlns:tools="http://schemas.androID.com/tools"    androID:ID="@+ID/layout_root"    androID:layout_wIDth="match_parent"    androID:layout_height="match_parent">    <ImageVIEw        androID:ID="@+ID/image_background"        androID:layout_wIDth="match_parent"        androID:layout_height="match_parent"        androID:scaleType="centerCrop"        androID:src="@drawable/background"        tools:ignore="ContentDescription"/>    <androID.support.v7.Widget.Toolbar        androID:ID="@+ID/action_bar"        androID:layout_wIDth="match_parent"        androID:layout_height="?attr/actionbarSize"        androID:background="@androID:color/transparent"        androID:fitsSystemwindows="true"        app:theme="@style/themeOverlay.AppCompat.Dark.Actionbar"/></FrameLayout>

*** 作栏标题和MenuItem在运行时添加.

@OverrIDeprotected voID onCreate(@Nullable Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentVIEw(R.layout.test);    setSupportActionbar((Toolbar) findVIEwByID(R.ID.action_bar));    Actionbar actionbar = getSupportActionbar();    assert actionbar != null;    actionbar.setdisplayHomeAsUpEnabled(false);    actionbar.setTitle("Test");}@OverrIDepublic boolean onCreateOptionsMenu(Menu menu) {    getMenuInflater().inflate(R.menu.menu_test, menu);    return true;}

在向工具栏视图添加fitsSystemwindows =“ true”之前,状态栏仍然覆盖在 *** 作栏上,但是’SKIP’MenuItem垂直位于 *** 作栏的中央,导致其部分出现在状态栏的下方.我期望fitsSystemwindows = true标志能给我我期望的结果(如上所述),但事实并非如此.好像fitsSystemwindows =“ true”正确定位了“跳过”按钮,但没有调整 *** 作栏本身的位置.有人知道这可能是什么问题吗?

编辑:我意识到我可以删除fitsSystemwindows =“ true”并在工具栏视图中添加margintop =“ … statusbarHeight”,但是我正在寻找一种更清洁的方法来解决此问题.

解决方法:

我的问题是由于我将工具栏的layout_height设置为?attr / actionbarSize.我最初以为fitsSystemwindows可以重新定位工具栏,但是它似乎添加了填充.因此,当在工具栏上添加顶部填充时,工具栏的内容将被下推.由于工具栏的高度是固定的,因此内容将被推到容器下限以下.我最终将?attr / actionbarSize设置为工具栏的minHeight属性的值来解决此问题.以下是我更新的工具栏:

<androID.support.v7.Widget.Toolbar    androID:ID="@+ID/action_bar"    androID:layout_wIDth="match_parent"    androID:layout_height="wrap_content"    androID:minHeight="?attr/actionbarSize"    androID:background="@androID:color/transparent"    androID:fitsSystemwindows="true"    app:theme="@style/themeOverlay.AppCompat.Dark.Actionbar"/>

警告:如果您不想在 *** 作栏正下方显示任何内容,则可以使用此方法,因为出于某种原因, *** 作栏的高度大约是包含主图标行的高度的两倍,标题和/或菜单项.如果有人知道实现不重叠状态栏和正常尺寸 *** 作栏的方法,请分享您的见解.我将永远感激不已.

注意事项更新:好的.显然,我的 *** 作栏正在接受与导航栏高度相同的额外底部填充,因为我设置了< item name =“ androID:windowTranslucentNavigation”> true< / item>在我的活动主题上.我通过删除windowTranslucentNavigation属性进行了验证.我正在使用AndroID支持库v25.1.1在7.1 Pixel上进行测试.

总结

以上是内存溢出为你收集整理的透明状态栏与 *** 作栏重叠全部内容,希望文章能够帮你解决透明状态栏与 *** 作栏重叠所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1091336.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存