Re: [android-developers] Re: EditText Issue

2011-04-20 Thread Gabe S
If you want a quick and dirty solution you could try putting an EditText over a TextView, with an OnTextChanged listener set to immediately add what you've typed to the TextView. If you want a clean solution, however, I would advice going with TreKing's suggesting of extending the EditText. On Fri

Re: [android-developers] Re: EditText Issue

2011-04-15 Thread TreKing
On Fri, Apr 15, 2011 at 7:44 AM, Bobbie wrote: > It's called real time text. > Ah. > With the RTT standard, you are supposed to send each character typed, as > you type it, so it's actually a great chat app for what I need to do. > Ah. It's just that the cursor has to stay at the end so the

[android-developers] Re: EditText Issue

2011-04-15 Thread Bobbie
It's called real time text. With the RTT standard, you are supposed to send each character typed, as you type it, so it's actually a great chat app for what I need to do. It's just that the cursor has to stay at the end so they can't go back and insert text in the middle of the message. Thanks f