如果不设置文字字体的颜色,而是使用系统默认的白色字体,滚动时屏幕会变暗,解决办法设置字体的颜色就可以了。
XML内textview代码:
<TextView android:id="@+id/textview1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:scrollbars="vertical" android:textColor="#FFFFFF" android:focusable = "true" />JAVA代码里加上监听器:
tv = (TextView) findViewById(R.id.textview1); tv.setMovementMethod(ScrollingMovementMethod.getInstance());