Android:fitsSystemWindows 和换行符干扰 bottomSheets

Posted

技术标签:

【中文标题】Android:fitsSystemWindows 和换行符干扰 bottomSheets【英文标题】:Android: fitsSystemWindows and newline interfering with bottomSheets 【发布时间】:2016-12-11 09:26:10 【问题描述】:

我发现如果父布局包含android:fitsSystemWindows="true",当发生与视图相关的操作时,它会干扰我的 BottomSheets 定位。

特别是我遇到的一个:文本视图中的换行符将触发底页偏移系统/通知栏的高度。

换行符 + fitSystemWindows = 将我的底页向下推

我消除了所有不相关的东西,包括按钮、文本视图和底页。

Button2:setText("1\n2") 是魔法发生的地方

一旦我删除 android:fitsSystemWindows="true",一切都好,不再有奇怪的行为,但我失去了系统/通知栏中 fitSystemWindows 颜色的效果。

我也尝试为我的 bottomSheet 布局提供自己的android:fitsSystemWindows="false",但没有任何效果。

如何在我的 bottomSheets 上没有这种奇怪的偏移行为的情况下同时实现 fitSystemWindows=true?

自己看看吧!

public class Test extends AppCompatActivity 
    private BottomSheetBehavior bottomSheetBehavior;

    @Override
    protected void onCreate(Bundle savedInstanceState) 
        super.onCreate(savedInstanceState);
        setContentView(R.layout.act_test);

        LinearLayout bottomSheet = (LinearLayout) findViewById(R.id.root_btmsheet);
        bottomSheetBehavior = BottomSheetBehavior.from(bottomSheet);
        bottomSheet.post(new Runnable() 
            @Override
            public void run() 
                bottomSheetBehavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
            
        );

        ((Button) findViewById(R.id.btn1)).setOnClickListener(new View.OnClickListener() 
            @Override
            public void onClick(View view) 
                ((TextView) findViewById(R.id.info1)).setText("1");
            
        );
        ((Button) findViewById(R.id.btn2)).setOnClickListener(new View.OnClickListener() 
            @Override
            public void onClick(View view) 
                // the culprit, Mr. Newline
                ((TextView) findViewById(R.id.info1)).setText("1\n2");
            
        );
    

act_test.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
    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:layout_
    android:layout_
    android:fitsSystemWindows="true"   <-- the other culprit, Ms. Fits
    tools:context=".Test">

    <!--<include layout="@layout/act_test_content" />-->
    <LinearLayout
        android:layout_
        android:layout_
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        android:orientation="vertical"
        android:id="@+id/root_content">

        <LinearLayout
            android:layout_
            android:layout_
            android:orientation="horizontal">
            <Button
                android:id="@+id/btn1"
                android:layout_
                android:layout_
                android:text="1" />
            <Button
                android:id="@+id/btn2"
                android:layout_
                android:layout_
                android:text="2" />
        </LinearLayout>

        <TextView
            android:id="@+id/info1"
            android:layout_
            android:layout_
            android:background="#e0e0e0" />

    </LinearLayout>

    <!--<include layout="@layout/act_test_btmsheet" />-->
    <LinearLayout
        android:layout_
        android:layout_
        app:layout_behavior="@string/bottom_sheet_behavior"
        android:orientation="vertical"
        app:behavior_hideable="false"
        app:behavior_peekHeight="50dp"
        android:background="#5533b5e5"
        android:id="@+id/root_btmsheet">

    </LinearLayout>

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

【问题讨论】:

用最新的支持库 25.x.x 重新访问了这个,问题现在似乎已经消失了。 刚刚在 23.3.0 developer.android.com/topic/libraries/support-library/… 链接到 code.google.com/p/android/issues/detail?id=203057 发现问题 【参考方案1】:

即使使用支持库 25.1.0,我也遇到了类似的问题。但后来我发现这可能是因为没有使用 CollapsingToolbarLayout。我将它包括在内并砰!.. 即使由于换行符而发生任何布局更改,它也能正常运行

【讨论】:

以上是关于Android:fitsSystemWindows 和换行符干扰 bottomSheets的主要内容,如果未能解决你的问题,请参考以下文章

再学一遍android:fitsSystemWindows属性

什么是非嵌入式活动,为什么 android:fitsSystemWindows 不能在其中工作?

再学一遍android:fitsSystemWindows属性

再学一遍android:fitsSystemWindows属性

再学一遍android:fitsSystemWindows属性

android:fitsSystemWindows=“true“导致沉浸式状态栏不起作用