美文网首页
TextView不用ScrollViewe也可以滚动的方法

TextView不用ScrollViewe也可以滚动的方法

作者: pilipalaKing | 来源:发表于2017-12-02 16:21 被阅读0次
 TextView textview = (TextView) findViewById(R.id.text);
 /**
  * 只有调用了该方法,TextView才能不依赖于ScrollView而实现滚动的效果。
  * 要在XML中设置TextView的textcolor,否则,当TextView被触摸时,会灰掉。
  */

 textview.setMovementMethod(ScrollingMovementMethod.getInstance());



  <TextView
       xmlns:android="http://schemas.android.com/apk/res/android"
       android:layout_width="fill_parent"
       android:layout_height="wrap_content"
       android:textSize="18sp"
       android:scrollbars="vertical"
       android:maxLines="12"
       android:textColor="@color/white"
       android:text="@string/str"
       android:id="@+id/text"/>


相关文章

网友评论

      本文标题:TextView不用ScrollViewe也可以滚动的方法

      本文链接:https://www.haomeiwen.com/subject/yqinbxtx.html