[android-developers] Re: How does the imeOptions of EditText work

2010-02-24 Thread sriram
Ok so I register for events on my textview, I do not get the first Done/Search if the "Predictive text is on". Who handles it the first time.. and if the predictive text is ON, the next time the text view is shown it retains the text, how do I clear that. -- You received this message because you

[android-developers] Re: How does the imeOptions of EditText work

2010-02-24 Thread Mark Nuetzmann
Sweet. That was easy, thank you. On Feb 24, 11:35 am, schwiz wrote: > have your activity implement onEditorActionListener then handle it in > the methodonEditorAction. > > On Feb 24, 11:25 am, Mark Nuetzmann wrote: > > > > > So if you set android:imeOptions="actionSearch" how do I intercept the

[android-developers] Re: How does the imeOptions of EditText work

2010-02-24 Thread schwiz
have your activity implement onEditorActionListener then handle it in the method onEditorAction. On Feb 24, 11:25 am, Mark Nuetzmann wrote: > So if you set android:imeOptions="actionSearch" how do I intercept the > result of the clicking the action/search button on the virtual > keypad?  How do I