実際にはすでに同様の質問があります BringToFront does not work inside a coordinator layout
ただし、コーディネーターレイアウト内で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();
しかし、成功せずに。ボタンはまだ上にあります。
私は何かを逃しましたか?
カスタム ビューを前面に表示したり、ボタンをカスタム ビューの下に配置したりする可能性はありますか?
また、ボタンに動作を追加しようとしましたが、その可視性はカスタム ビューだけに依存するものではないため、このアプローチを破棄しました。
事前に助けてくれてありがとう。