当前位置: 代码迷 >> Android >> Android TextView 平添滚动条
  详细解决方案

Android TextView 平添滚动条

热度:37   发布时间:2016-05-01 15:12:44.0
Android TextView 添加滚动条

1.xml代码 

<TextView

          android:id="@+id/textview"
          android:layout_width="322dp"
          android:layout_height="wrap_content"
          android:scrollbars="vertical"
          android:maxLines="20"
          android:singleLine="false"
           >

       </TextView>

2.除了在xml文件中配置之外,在程序中还得加一下代码

TextView  text=(TextView)findViewById(R.id.textview);

 text.setMovementMethod(ScrollingMovementMethod.getInstance());


这就OK了!

  相关解决方案