appcompat ライブラリを 23.1.1 から 23.2 に更新したところ、アプリケーションが java.lang.IllegalStateException: View can't be anchored to the parent CoordinatorLayout で動作しなくなりました。
java.lang.IllegalStateException: View can not be anchored to the the parent CoordinatorLayout
クラッシュは、親 (CoordinatorLayout が編集モードでない)resolveAnchorView
のメソッドから発生します。CoordinatorLayout
レイアウトはベース アクティビティのルート要素として使用され、さまざまなレイアウト (ツールバー、プログレスバー、および最後にアクティビティの膨張したレイアウトを含む relativelayout) が含まれます。
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/base_activity__main_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/shared__color_primary">
<ProgressBar
android:id="@+id/base_activity__progress_bar_top"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:indeterminate="true"
android:visibility="gone" />
<ViewSwitcher
android:id="@+id/base_activity__switcher"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/base_activity__progress_bar_top">
<LinearLayout
android:id="@+id/base_activity__progress_bar_layout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/_loading"
android:textStyle="italic" />
<ProgressBar
android:id="@+id/base_activity__progress_bar"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="150dp"
android:layout_height="wrap_content"
android:indeterminate="true" />
</LinearLayout>
<RelativeLayout
android:id="@+id/base_activity__main_content_layout"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</ViewSwitcher>
<RelativeLayout
android:id="@+id/base_activity__add_button__container"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@android:color/transparent" />
</android.support.design.widget.CoordinatorLayout>