文本视图丢失要显示的字符[Android]

时间:2015-04-23 07:29:53

标签: android android-layout textview

我有一个文本显示在文本视图中。该文本包含200行数据,每行包含10个字符。总共 2000个字符。文本视图位于垂直可滚动视图内。 前50行未显示。如果文本视图对字符数有限制,那么如果它丢失了最后几行就足够公平,但为什么它会起作用?。 还有文本视图的字符数限制是什么?

top most- missing first 50 lines of data

dragged down some more extra space available(can fit 50 lines i guess)

我的代码:

<ScrollView
        android:id="@+id/scroll_layout_ECG"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_above="@+id/btn_ECG"
        android:layout_alignLeft="@+id/btn_ECG"
        android:layout_alignStart="@+id/btn_ECG"
        android:layout_marginBottom="16dp"
        android:layout_marginTop="16dp" >

        <TextView
            android:id="@+id/tvECG_samples"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:gravity="center"
            android:hint="ECG\nsamples"
            android:textSize="25sp" />
    </ScrollView>

在第一个屏幕截图中,数据显示在第51行。前50行被剪掉。为什么?

1 个答案:

答案 0 :(得分:0)

不需要外部滚动条而不是你可以使用textview的属性

                   android:scrollbars="vertical"

我认为这会有所帮助