Android layout 如何在版面中添加更多内容?是否可以在scrollView中定义多个textview?

Android layout 如何在版面中添加更多内容?是否可以在scrollView中定义多个textview?,android-layout,Android Layout,这是我的代码,我一直在使用scrollView和它里面的两个文本视图来添加更多的内容,但它只在有一个文本视图的情况下工作。请看我做了什么更改来添加更多的内容?这里我想要这些文本视图(内容)之间的空间但在我的代码中,我正在尝试,但内容重叠,内容之间没有适当的空间。请帮助我 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/

这是我的代码,我一直在使用scrollView和它里面的两个文本视图来添加更多的内容,但它只在有一个文本视图的情况下工作。请看我做了什么更改来添加更多的内容?这里我想要这些文本视图(内容)之间的空间但在我的代码中,我正在尝试,但内容重叠,内容之间没有适当的空间。请帮助我

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.hp.kludge.AndroidActivity">

    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:weightSum="1">

        <TextView
            android:id="@+id/tvA"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentStart="true"
            android:layout_alignParentTop="true"
            android:text="ANDROID"
            android:textColor="#f6080101"
            android:textColorHighlight="#df1425"
            android:textSize="35dp"
            android:textStyle="bold" />


        <View
            android:layout_width="match_parent"
            android:background="#e62027"
            android:layout_height="2dp"
            android:layout_below="@+id/tvC" />

        <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/scrollView"
            android:fillViewport="true"
            android:orientation="vertical">

        <TextView
             android:id="@+id/tvWhat"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             android:layout_alignParentLeft="true"
             android:layout_alignParentStart="true"
             android:layout_below="@+id/tvC"
             android:layout_marginTop="44dp"
             android:text="What is Android?"
             android:textAppearance="?android:attr/textAppearanceMedium"
             android:textSize="22dp" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textAppearance="?android:attr/textAppearanceLarge"
            android:text="Content"
            android:id="@+id/tvt" />

        </ScrollView>

    </LinearLayout>

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Next"
        android:id="@+id/butNext"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:layout_alignParentEnd="true"
        android:background="#abc3fb" />


</RelativeLayout>