Android TextView Scrollable

时间:2014-05-26 15:31:16

标签: android listview android-intent textview

我有一个textView,其大小为16个字符,如果超过16个字符,我想让它可以滚动到用户查看剩余的字符。 有谁可以帮助我?

我试过这个链接Making TextView scrollable on Android

但是没有结果?

我的TextView布局:

<TextView  
    android:id="@+id/tv1"
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:maxLength="16"
       android:scrollbars = "vertical"
       android:ellipsize="end"
    android:text="fdgdddhhhdhd"
    />

3 个答案:

答案 0 :(得分:25)

在XML布局文件中:

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

在Java类文件中:

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

答案 1 :(得分:5)

将您的textview包装在滚动视图中:

<ScrollView
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" >
        <TextView  
            android:id="@+id/tv1"
            android:layout_width="fill_parent" 
            android:layout_height="fill_parent" 
            android:maxLength="16"
            android:scrollbars = "vertical"
            android:ellipsize="end"
            android:text="fdgdddhhhdhd" />
</ScrollView>

答案 2 :(得分:1)

你的android:maxlength =“16”限制了可以放在TextView中的字符数到16

According to the developer site