auto-scrolling TextView in android to bring text into view

前端 未结 13 1723

I have a TextView that I\'m dynamically adding text to.

in my main.xml file I have the properties set to make my max lines 19 and scrollbar

13条回答
  •  萌比男神i
    2020-11-28 05:39

     scrollview=(ScrollView)findViewById(R.id.scrollview1); 
     tb2.setTextSize(30); 
     tb2=(TextView)findViewById(R.id.textView2);                 
     scrollview.fullScroll(View.FOCUS_DOWN);    
    

    Or use this in TextView:

    
    

提交回复
热议问题