TextView实现滚动

xml文件:

1 <TextView
2         android:id="@+id/viewLocation"
3         android:layout_width="match_parent"
4         android:layout_height="120dp"
5         android:hint="now location"
6         android:scrollbars="vertical"
7         android:fadeScrollbars="false"
8         />
View Code

java代码:

1 viewLocation = (TextView) findViewById(R.id.viewLocation);
2         viewLocation.setMovementMethod(ScrollingMovementMethod.getInstance());
View Code

 

posted on 2017-09-15 09:41  石潄流枕  阅读(72)  评论(0编辑  收藏  举报

导航