給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>
