Child NestedScrollView 内部未覆盖整个屏幕高度
Child inside NestedScrollView not cover full height of screen
我在片段中使用 NestedScrollView。在我的 xml 中的 RelativeLayout 中,但它没有覆盖整个屏幕高度。
下面是我的代码 -
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:fitsSystemWindows="true"
android:background="@color/black"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:background="@color/red_error_color"
android:layout_width="match_parent"
android:layout_height="match_parent">
</RelativeLayout>
</android.support.v4.widget.NestedScrollView>
当 运行 代码只有黑色背景可见而不是红色时,因为我的 child 视图背景是红色的。
提前致谢
尝试在您的 nestedscrollview 中添加这行代码
android:fillViewport="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
删除:
android:fitsSystemWindows="true"
我在片段中使用 NestedScrollView。在我的 xml 中的 RelativeLayout 中,但它没有覆盖整个屏幕高度。
下面是我的代码 -
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:fitsSystemWindows="true"
android:background="@color/black"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:background="@color/red_error_color"
android:layout_width="match_parent"
android:layout_height="match_parent">
</RelativeLayout>
</android.support.v4.widget.NestedScrollView>
当 运行 代码只有黑色背景可见而不是红色时,因为我的 child 视图背景是红色的。
提前致谢
尝试在您的 nestedscrollview 中添加这行代码
android:fillViewport="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
删除:
android:fitsSystemWindows="true"