Android TextView滚动条设置

第一种 XML设置:

<TextView  
    android:id="@+id/text"  
    android:layout_width="fill_parent"  
    android:layout_height="wrap_content"  
    android:maxLines="8"  
    android:scrollbars="vertical" />  

然后在代码中加上

text.setMovementMethod(ScrollingMovementMethod.getInstance()) ; 



第二种 直接代码中设置:

txt.setVerticalScrollBarEnabled(true);
txt.setScrollBarStyle(View.SCROLLBARS_INSIDE_OVERLAY);
txt.setScrollBarFadeDuration(500);
txt.setMaxLines(1000);
txt.setMovementMethod(ScrollingMovementMethod.getInstance());



猜你喜欢

转载自blog.csdn.net/zxb3121999/article/details/49735991