gpt4 book ai didi

android - 电池和网络未显示的最上面的栏

转载 作者:行者123 更新时间:2023-11-29 19:24:46 25 4
gpt4 key购买 nike

有电池和网络的最上面的栏显示为纯白色栏。请帮忙解决这个问题。谢谢

它是这样来的

It is coming like this

应该是这样的

It should be like this

这是我的xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">

<android.support.v7.widget.Toolbar
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:theme="?attr/actionBarTheme"
android:minHeight="?attr/actionBarSize"
android:id="@+id/toolbar2"
android:layout_weight="1" />

</android.support.design.widget.AppBarLayout>

<!-- Editext for Search -->
<EditText android:id="@+id/inputSearch"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="Search products.."
android:inputType="textVisiblePassword"/>

<!-- List View -->
<ListView
android:id="@+id/list_view"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />

</LinearLayout>

最佳答案

一个对我有用的修复是切换到 CoordinatorLayout。即

  <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">

<!-- your contents here -->

</android.support.design.widget.CoordinatorLayout>

将您的布局内容移动到 CoordinatorLayout 中。另外 android:fitsSystemWindows="true" 是必需的,如果 fitSystemWindows 设置为 true,它就无法工作。希望对您有所帮助。

关于android - 电池和网络未显示的最上面的栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41627085/

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