Android Studio – NestedScrollView breaks suggestions in Android Studio
Here is the strange behavior. I have this layout: <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" style="@style/AppTheme.FragmentBackground.XXXX.Parent" android:layout_width="match_parent" android:layout_height="match_parent"> <include android:id="@+id/appbar" layout="@layout/layout_appbar" /> <LinearLayout android:layout_width="match_parent" app:layout_constraintTop_toTopOf="parent" android:layout_height="wrap_content"> </LinearLayout> </androidx.constraintlayout.widget.ConstraintLayout> So far, everything seems perfect. Although, if I replace the LinearLayout with…