【问题标题】:How to avoid overlapping views with insetEdge and dodgeInsetEdges如何避免与 insetEdge 和 dodgeInsetEdges 重叠的视图
【发布时间】:2019-08-31 12:01:18
【问题描述】:

我有这个布局:

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

    <android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">

            <TextView
                android:id="@+id/listitem_1"
                android:layout_width="match_parent"
                android:layout_height="100dp"
                android:layout_margin="16dp"
                android:gravity="center"
                android:text="item 1"
                android:background="#ff0000"/>

            <TextView
                android:id="@+id/listitem_2"
                android:layout_width="match_parent"
                android:layout_height="100dp"
                android:layout_margin="16dp"
                android:gravity="center"
                android:text="item 2"
                android:background="#ff0000"/>

            <TextView
                android:id="@+id/listitem_3"
                android:layout_width="match_parent"
                android:layout_height="100dp"
                android:layout_margin="16dp"
                android:gravity="center"
                android:text="item 3"
                android:background="#ff0000"/>

            <View
                android:id="@+id/scroller_bottom_bar"
                android:layout_width="match_parent"
                android:layout_height="100dp"
                android:background="#0000ff" />
        </LinearLayout>
    </android.support.v4.widget.NestedScrollView>

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="@dimen/fab_margin"
        app:layout_anchor="@id/scroller_bottom_bar"
        app:layout_anchorGravity="end"
        app:srcCompat="@android:drawable/ic_dialog_email" />
</android.support.design.widget.CoordinatorLayout>

转换为以下 UI 动画:

如您所见,浮动操作按钮与蓝色底视图重叠。我想避免这种情况。我该怎么做?

【问题讨论】:

    标签: android android-coordinatorlayout


    【解决方案1】:

    这可以通过添加insetEdgedodgeInsetEdges 属性来解决。基本上,insetEdgeCoordinatorLayout 知道它的其他孩子可以根据需要躲避它。在其他视图上设置dodgeInsetEdges,让它们真正躲避可闪避视图(标记为insetEdge)。

    将原来的xml布局改写为:

    <android.support.design.widget.CoordinatorLayout 
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true">
    
        <android.support.v4.widget.NestedScrollView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_behavior="@string/appbar_scrolling_view_behavior">
    
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical">
    
                <TextView
                    android:id="@+id/listitem_1"
                    android:layout_width="match_parent"
                    android:layout_height="100dp"
                    android:layout_margin="16dp"
                    android:gravity="center"
                    android:text="item 1"
                    android:background="#ff0000"/>
    
                <TextView
                    android:id="@+id/listitem_2"
                    android:layout_width="match_parent"
                    android:layout_height="100dp"
                    android:layout_margin="16dp"
                    android:gravity="center"
                    android:text="item 2"
                    android:background="#ff0000"/>
    
                <TextView
                    android:id="@+id/listitem_3"
                    android:layout_width="match_parent"
                    android:layout_height="100dp"
                    android:layout_margin="16dp"
                    android:gravity="center"
                    android:text="item 3"
                    android:background="#ff0000"/>
    
                <View
                    android:id="@+id/scroller_bottom_bar"
                    android:layout_width="match_parent"
                    android:layout_height="100dp"
                    android:background="#0000ff" />
            </LinearLayout>
        </android.support.v4.widget.NestedScrollView>
    
        <android.support.design.widget.FloatingActionButton
            android:id="@+id/fab"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="@dimen/fab_margin"
            app:layout_anchor="@id/fab_anchor"
            app:layout_anchorGravity="end"
            app:layout_dodgeInsetEdges="bottom"
            app:srcCompat="@android:drawable/ic_dialog_email" />
    
        <View
            android:id="@+id/fab_anchor"
            android:layout_width="match_parent"
            android:layout_height="1dp"
            app:layout_anchor="@id/scroller_bottom_bar"
            app:layout_insetEdge="bottom" />
    </android.support.design.widget.CoordinatorLayout>
    

    应该导致预期的 UI 行为:

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2023-04-06
      • 1970-01-01
      • 2018-01-20
      • 2017-03-27
      • 1970-01-01
      • 1970-01-01
      • 2017-08-06
      相关资源
      最近更新 更多