android textview添加滚动条


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

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM