Scrollview不显示滚动条

时间:2016-05-31 03:20:56

标签: android textview scrollview

我的Android TextView xml非常简单,如下所示,我使用的是样式ScrollView,但它不会显示滚动条,即使文本超出底部,我也无法看到超出范围的内容。如何启用滚动条? 我认为" match_parent"有问题,但不知道如何解决。谢谢!

    <?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"
    android:orientation="vertical"
    android:background="#ffffff">

        <TextView
        android:id="@+id/textResult"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
            android:layout_below="@+id/buttonRecord"
        android:layout_marginTop="16dp"
        android:background="@drawable/back"
        android:editable="true"
        android:height="150dp"
        android:text=""
        android:enabled="false"

        android:scrollbars="vertical"
        style="@android:style/Widget.ScrollView"
            android:layout_alignRight="@+id/buttonRecord"
            android:layout_alignEnd="@+id/buttonRecord"
            android:layout_alignLeft="@+id/buttonRecord"
            android:layout_alignStart="@+id/buttonRecord" />

</RelativeLayout>

2 个答案:

答案 0 :(得分:0)

如果您想要滚动内容,或者尝试给它一个固定的高度?现在由于layout_height,高度设置为wrap_content。我认为你不应该使用android:height

答案 1 :(得分:0)

如果你想要一个固定高度的TextView用滚动条垂直滚动, 定义XML布局文件:

<TextView
    android:id="@+id/textView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:scrollbars="vertical"
    android:text="@string/text_string" />

定义您的Java类文件:

TextView tv = (TextView) findViewById(R.id.textView);
tv.setMovementMethod(new ScrollingMovementMethod());