在layout上显示文字时,因为字数过多不能全部显示,可以添加一个滚动条
在layout中
<TextView
android:id="@+id/tv"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical"//加滚动条
android:singleLine="false"
android:text="" />
在MainActivity中
tv = (TextView)findViewById(R.id.tv);
tv.setMovementMethod(ScrollingMovementMethod.getInstance());
就能添加滚动条了!
本文出自 “软件学习总结” 博客,请务必保留此出处http://bigcrab.blog.51cto.com/10626858/1685025
原文地址:http://bigcrab.blog.51cto.com/10626858/1685025