给textview添加滚动条
方式一:
xml代码:
//设置滚动条的方向
android:scrollbars="vertical"
java中设置
tView=(TextView) findViewById(R.id.tv1);
//设置滚动方式
tView.setMovementMethod(ScrollingMovementMethod.getInstance());
方式二:
直接通过ScrollView
<ScrollView
android:layout_width="mantch_parent"
android:layout_height="wrap_content"
android:scrollbars="vertical"
android:fillViewport="true">
<TextView....../>
</ScrollView>
时间: 2024-11-06 03:38:41