gpt4 book ai didi

android:fitsSystemWindows 在运行时

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:39:30 26 4
gpt4 key购买 nike

我的 Android 应用以以下布局开始:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/root"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">

<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click"/>
</RelativeLayout>

Activity 有一个状态栏的偏移量。

我想通过单击按钮在运行时删除此偏移量。通过单击按钮,我执行以下操作,但它不起作用,没有任何反应:

findViewById(R.id.root).setFitsSystemWindows(false);

我该怎么做?

最佳答案

我一直在处理这个问题,只发现了这个悬而未决的问题。

终于找到了解决办法:

View view = findViewById(R.id.root);
view.setFitsSystemWindows(false);
view.setPadding(0, 0, 0, 0);

将 fitsSystemWindows 设置为 true 会修改填充。显然,禁用 fitsSystemWindows 会保留填充集。

关于android:fitsSystemWindows 在运行时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30439661/

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