服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Android - android TextView不用ScrollViewe也可以滚动的方法

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

2021-02-14 23:24Android开发网 Android

这篇文章主要介绍了android TextView不用ScrollViewe也可以滚动的方法,很简单实用的代码,大家参考使用吧

代码

复制代码 代码如下:

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>
 

延伸 · 阅读

精彩推荐