如何在我的viewpager中将我的一个textViews滚动?

时间:2016-12-06 19:45:23

标签: android scroll android-viewpager

我的ViewPager正在运行,但是当文本对于页面太长时,我无法滚动textView。这是我的每个页面布局的xml。我希望顶部TextView保持固定,而底部TextView滚动,如果页面太长。任何帮助表示赞赏。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dp"  >

<TextView
    android:id="@+id/reference"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textColor="#128238"
    android:textStyle="bold"
    android:textSize="24dp"/>

<TextView
    android:id="@+id/details"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textColor="#128238"
    android:textSize="24dp"
    android:layout_below="@+id/reference"
    android:scrollbars="vertical" />

1 个答案:

答案 0 :(得分:1)

您可以将TextViewScrollView包裹在一起

<?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:id="@+id/content_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <TextView
            android:id="@+id/device_info"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            tools:text="device info" />

    </ScrollView>

</RelativeLayout>