Ho una FragmeLayout all'interno di un NestedScrollView, comeFrameLayout non corrisponde all'altezza di NestedScrollView
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000">
Ma il FrameLayout non riempie l'altezza del NestedScrollView. Come posso risolvere questo problema?
Credo che impostare la gravità = center o altro nel layout telaio –
facendo 'Android: layout_gravity = "center"' o 'Android: layout_gravity = "center | fill_vertical"' non sembra lavorare – learner
'Android: fillViewport = "true" 'controlla questo Aggiungi in' android.support.v4.widget.NestedScrollView' –