3

实际上已经有类似的问题 BringToFront 在协调器布局中不起作用

但是,没有任何建议可以帮助我在 coordinatorlayout 中使 BringToFront 工作。

这是布局-xml

<?xml version="1.0" encoding="utf-8"?>
<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:orientation="vertical">

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

        <include layout="@layout/toolbar"
             android:layout_width="match_parent"
             android:layout_height="wrap_content"/>

        <android.support.v4.widget.DrawerLayout
            android:id="@+id/drawer_layout"
            android:layout_width="match_parent"
            android:layout_height="match_parent">

            <FrameLayout
                android:id="@+id/main_content_container"
                android:layout_width="match_parent"
                android:layout_height="match_parent"/>

            <fragment
                android:id="@+id/navigation_drawer_container"
                android:name="..."
                android:layout_width="@dimen/navigation_drawer_width"
                android:layout_height="match_parent"
                android:layout_gravity="start"/>

        </android.support.v4.widget.DrawerLayout>

    </LinearLayout>


    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/..."
        android:clickable="true"
        android:layout_gravity="bottom|end"
        android:layout_marginRight="20dp"
        android:layout_marginBottom="60dp"
        app:borderWidth="0dp"/>

    <CustomView
        android:id="@+id/customview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentBottom="true"
        android:orientation="vertical"
        android:visibility="gone"
        app:layout_behavior="..."/>

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

自定义视图继承自 FrameLayout。它可以改变它的高度。

为了首先将自定义视图放在前面,我尝试添加:

mCustomView.bringToFront();

然后

mCustomView.requestLayout();
mCustomView.invalidate();

最后也是

((View)mCustomView.getParent()).requestLayout();

但没有成功。按钮仍然在顶部。

我错过了什么吗?

也许还有其他可能将自定义视图放在前面或将按钮放在自定义视图下?

我还尝试向按钮添加一个行为,但由于它的可见性不仅取决于我抛弃这种方法的自定义视图。

感谢您提前提供任何帮助。

4

1 回答 1

1

我终于找到了一种解决方法——如果我setEnabled(false)在 AppBar 上进行设置,它会进入后台,无论 API 级别如何,我都可以在上面绘制其他内容。

于 2017-03-11T17:29:32.923 回答