欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

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

程序员文章站 2023-11-18 12:20:46
代码复制代码 代码如下:textview textview = (textview) findviewbyid(r.id.text);   &...

代码

复制代码 代码如下:

textview textview = (textview) findviewbyid(r.id.text);
            /**             *
             * 只有调用了该方法,textview才能不依赖于scrollview而实现滚动的效果。
             * 要在xml中设置textview的textcolor,否则,当textview被触摸时,会灰掉。
             */

            textview.setmovementmethod(scrollingmovementmethod.getinstance());
 

xml文件

复制代码 代码如下:

<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>