Uhmmm, how about myTextView.insertText("Whatever you want to insert");? You have to be careful though; that inserts text where the cursor was last, so if the text view is selectable, and the user changes the cursor location, you can have text inserted in places that you didn't intend. I...