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