[android-developers] TextView - how to make appended text visible?

2011-01-28 Thread John Lussmyer
I have a TextView that frequently has text appended from a service. I can append the text just fine, but how do I make the TextView scroll so the newly appended text is visible? Once the view fills, the new text is below the bottom edge. -- You received this message because you are subscribed to

Re: [android-developers] TextView - how to make appended text visible?

2011-01-28 Thread Tobiah
On 01/28/2011 09:50 AM, John Lussmyer wrote: I have a TextView that frequently has text appended from a service. I can append the text just fine, but how do I make the TextView scroll so the newly appended text is visible? Once the view fills, the new text is below the bottom edge. I haven't

Re: [android-developers] TextView - how to make appended text visible?

2011-01-28 Thread John Lussmyer
I wrapped the TextView in a ScrollView (even though TextView is documented as handling it's own scrolling and doesn't need a ScrollView). This let me call the fullScroll( View.FOCUS_DOWN) method in the ScrollView to make the newest text visible. On Fri, Jan 28, 2011 at 11:35 AM, Tobiah