gpt4 book ai didi

appbar下的android空间

转载 作者:太空狗 更新时间:2023-10-29 16:31:34 27 4
gpt4 key购买 nike

我试图将两个 Fragments 并排放置,但我无法摆脱 ActionBar 和我的应用程序内容之间的空格:

Toolbar spacing screenshot

这是我的XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="horizontal" android:layout_width="match_parent"
android:fitsSystemWindows="true"
android:layout_height="match_parent"
android:clipChildren="false"
android:clipToPadding="false"
android:elevation="0dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.tce.manager.MainActivity"
tools:showIn="@layout/app_bar_main">

<fragment
android:layout_width="match_parent"
android:layout_height="match_parent"
android:elevation="2dp"
android:name="com.tce.manager.DeviceListFragment"
android:layout_weight="3"
android:id="@+id/fragment_device_list" />

<FrameLayout
android:background="@android:color/darker_gray"
android:elevation="0dp"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="2" />

</LinearLayout>

我已经尝试更改工具栏和 AppBarLayoutmarginspadding

最佳答案

删除 android:fitsSystemWindows="true"

If it's set to true, then it adjusts the padding of this view to leave space for the system windows.

关于appbar下的android空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36979954/

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