【发布时间】:2017-08-17 05:28:15
【问题描述】:
我在我的片段中使用 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>
运行代码时,只有黑色背景可见,但不是红色,因为我的子视图背景是红色的。
提前致谢
【问题讨论】:
标签: android android-scrollview android-relativelayout android-nestedscrollview