滚动视图不适用于相对布局

Scroll View is not working with relative layout

我试着做一个滚动视图。但是,它不会在滚动视图中显示 viewPager。不知道哪里错了

这是我的 xml 文件

<?xml version="1.0" encoding="utf-8"?>
<ScrollView 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"
tools:context="com.example.qianonnphoon.tradeal.displaytrade.DisplayTradeActivity">

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.v4.view.ViewPager
    android:id="@+id/view_pager"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <android.support.design.widget.TabLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:tabBackground="@drawable/tab_selector"
        app:tabGravity="center"
        app:tabIndicatorHeight="0dp">
        </android.support.design.widget.TabLayout>

    </android.support.v4.view.ViewPager>

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="23dp"
    android:layout_below="@+id/view_pager"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:id="@+id/tvOwnItemName"/>
</RelativeLayout>
</ScrollView>

这是输出

未显示viewPager。只有当我删除滚动视图时,才会显示 viewPager

试试这个:

    <ScrollView
    android:id="@+id/scroll"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
     android:scrollbars="vertical">
    android:fillViewport="true" >


    <RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
</RelativeLayout>

</ScrollView>

尝试在加载 viewPager 之前添加这段代码

NestedScrollView scrollView = (NestedScrollView) findViewById 
(R.id.nest_scrollview);
scrollView.setFillViewport (true);

添加

android:fillViewport="true"

滚动视图并将滚动视图高度设置为

android:layout_height="300dp"

解决我的问题。

但是不知道为什么高度不能设置为wrap_content