次の階層を持つレイアウトがあります
list.xml
<android.support.constraint.ConstraintLayout
android:id="@+id/layout_content"
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.support.v4.widget.SwipeRefreshLayout
android:id="@+id/refresh"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintEnd_toEndOf="@+id/layout_content"
app:layout_constraintStart_toStartOf="@+id/layout_content"
app:layout_constraintTop_toTopOf="@+id/layout_content"
tools:layout_constraintEnd_creator="0"
tools:layout_constraintStart_creator="0"
tools:layout_editor_absoluteX="0dp">
<com.fastaccess.cheaphlight.ui.widgets.recyclerview.DynamicRecyclerView
android:id="@+id/recycler"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="@dimen/spacing_large"
app:layoutManager="@string/staggered_layout_manager"
app:layout_constraintLeft_toLeftOf="@+id/refresh"
app:spanCount="2"
tools:listitem="@layout/county_row_item"/>
</android.support.v4.widget.SwipeRefreshLayout>
<include
layout="@layout/empty_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintEnd_toEndOf="@+id/layout_content"
app:layout_constraintStart_toStartOf="@+id/layout_content"
app:layout_constraintTop_toTopOf="@+id/layout_content"
tools:layout_constraintBottom_creator="0"
tools:layout_constraintEnd_creator="0"
tools:layout_constraintStart_creator="0"
tools:layout_constraintTop_creator="0"/>
<include
layout="@layout/progress_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:paddingBottom="?attr/actionBarSize"
app:layout_constraintBottom_toBottomOf="@+id/layout_content"
app:layout_constraintEnd_toEndOf="@+id/layout_content"
app:layout_constraintStart_toStartOf="@+id/layout_content"
app:layout_constraintTop_toTopOf="@+id/layout_content"
tools:layout_constraintBottom_creator="0"
tools:layout_constraintEnd_creator="0"
tools:layout_constraintStart_creator="0"
tools:layout_constraintTop_creator="0"
tools:layout_editor_absoluteX="205dp"
tools:layout_editor_absoluteY="382dp"/>
</android.support.constraint.ConstraintLayout>
empty_layout.xml
<android.support.constraint.ConstraintLayout
android:id="@+id/empty_layout"
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="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:visibility="gone"
tools:visibility="visible">
<ImageView
android:id="@+id/image_message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_sad_face"
app:layout_constraintBottom_toBottomOf="@+id/empty_layout"
app:layout_constraintEnd_toEndOf="@+id/empty_layout"
app:layout_constraintStart_toStartOf="@+id/empty_layout"
app:layout_constraintTop_toTopOf="@+id/empty_layout"
app:layout_constraintVertical_bias="0.19"
tools:ignore="ContentDescription"
tools:layout_constraintBottom_creator="0"
tools:layout_constraintEnd_creator="0"
tools:layout_constraintStart_creator="0"
tools:layout_constraintTop_creator="0"
tools:layout_editor_absoluteX="145dp"
tools:layout_editor_absoluteY="321dp"/>
<com.fastaccess.cheaphlight.ui.widgets.FontTextView
android:id="@+id/text_message"
style="@style/TextAppearance.AppCompat.Medium"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/image_message"
android:layout_centerHorizontal="true"
android:layout_margin="@dimen/spacing_normal"
android:gravity="center_horizontal"
android:padding="@dimen/spacing_s_large"
android:textColor="@color/divider"
app:layout_constraintEnd_toEndOf="@+id/empty_layout"
app:layout_constraintStart_toStartOf="@+id/empty_layout"
app:layout_constraintTop_toBottomOf="@+id/image_message"
tools:layout_constraintEnd_creator="0"
tools:layout_constraintStart_creator="0"
tools:layout_constraintTop_creator="0"
tools:layout_editor_absoluteX="205dp"
tools:layout_editor_absoluteY="441dp"
tools:text="Error Message"/>
<com.fastaccess.cheaphlight.ui.widgets.FontButton
android:id="@+id/reload_button"
style="@style/Widget.AppCompat.Button.Borderless"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/text_message"
android:layout_centerHorizontal="true"
android:layout_margin="@dimen/spacing_normal"
android:padding="@dimen/spacing_s_large"
android:text="@string/reload"
android:textColor="@color/accent"
app:layout_constraintEnd_toEndOf="@+id/empty_layout"
app:layout_constraintStart_toStartOf="@+id/empty_layout"
app:layout_constraintTop_toBottomOf="@+id/text_message"
tools:layout_constraintEnd_creator="0"
tools:layout_constraintStart_creator="0"
tools:layout_constraintTop_creator="0"
tools:layout_editor_absoluteX="205dp"
tools:layout_editor_absoluteY="441dp"/>
</android.support.constraint.ConstraintLayout>
progress_layout.xml
<ProgressBar
android:id="@+id/progress_layout"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:paddingBottom="?attr/actionBarSize"
android:visibility="gone"
tools:visibility="visible"/>
私の Fragment クラスでは、子 RecyclerView で SwipeRefreshLayout を非表示にし、empty_layout を表示しています。これは正常に動作しますが、デバイスの画面をオフにしてオンにすると、empty_layout が消えます。
参考:ネストされた ConstrainLayout の可視性を常に表示するように設定しましたが、画面をオフ/オンにすると消えます。
参考:ProgressViewを表示したことがある場合、ProgressViewは画面のオン/オフで表示されたままになります。これは、ProgressViewがネストされたConstraintLayoutの下にラップされていないためだと思います!?.
入れ子になった ConstrainLayout が画面のオン/オフでのみ消えるのに、画面を回転させても残る理由について何か考えはありますか?