如何使一个文本视图可滚动

时间:2018-11-15 19:05:19

标签: android

  

我的Firebase数据库中有一些信息,并在我的textview id = SecondRow_1中传递了信息。我想使滚动条可以帮助人们以正常大小查看内容。但是信息很大,因此我想使该文本可滚动,并移动其他文本视图。我可以把所有东西都弄得一团糟。这是一个学校项目。

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">


<TextView
    android:id="@+id/firstRow"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textSize="20dp"
    android:fontFamily="serif"
    android:layout_margin="15dp"
    android:text="Program:"
    android:textColor="#b22222"
    android:gravity="center"/>

<TextView
    android:id="@+id/firstRow_1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:fontFamily="serif"
    android:layout_marginLeft="15dp"
    android:layout_marginRight="15dp"
    android:text="row"
    android:textColor="#000"
    android:gravity="center"/>

<TextView
    android:id="@+id/secondRow"
    android:text="Description"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textSize="20dp"
    android:fontFamily="serif"
    android:layout_margin="15dp"
    android:textColor="#b22222"
    android:gravity="center"/>
<ScrollView
    android:layout_width="wrap_content"
    android:layout_height="100dp">
<TextView
    android:id="@+id/SecondRow_1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:fontFamily="serif"
    android:layout_marginLeft="15dp"
    android:layout_marginRight="15dp"
    android:text="row"
    android:textColor="#000"
    android:gravity="center"/>
</ScrollView>

<TextView
    android:id="@+id/fourthRow"
    android:text="Contact"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textSize="20dp"
    android:fontFamily="serif"
    android:textColor="#b22222"
    android:layout_margin="15dp"
    android:gravity="center"/>

<TextView
    android:id="@+id/thirdRow_1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="15dp"
    android:layout_marginRight="15dp"
    android:fontFamily="serif"
    android:text="row"
    android:textColor="#000"
    android:gravity="center"/>

  

0 个答案:

没有答案