HI,

I have only put the below code:

class DoneOnEditorActionListener implements OnEditorActionListener {
    @Override
    public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
        if (actionId == EditorInfo.IME_ACTION_DONE) {
            Log.v("*****************************", "Clicked");

            return true;
        }
        return false;
    }}



On Tue, Apr 9, 2013 at 11:14 AM, vani reddy <[email protected]>wrote:

> HI,
>
> Nothing else is in the code.It just returns true if the user clicks done
>  or else it returns false.I referred the link which i sent in the previous
> mail.
>
>
> On Mon, Apr 8, 2013 at 8:08 PM, bob <[email protected]> wrote:
>
>> I would definitely suspect this code:
>>
>>             txtQty.setOnEditorActionListener( new
>> OnEditorActionListener() {
>>                 public boolean onEditorAction(TextView v, int actionId,
>> KeyEvent event) {
>>                     Log.i("KeyBoard" ,"Inside the Edit Text");
>>                     .............................
>>         } });
>>
>>
>> What else is in the OnEditorActionListener?
>>
>> Thanks.
>>
>>
>>
>>
>> On Monday, April 8, 2013 9:02:36 AM UTC-5, vani wrote:
>>>
>>> Hi friends,
>>>
>>> I have 2 edittext fields where I need to enter text.While entering in
>>> the soft keyboard it is too slow ,keyboard pauses for 2 seconds after
>>> clicking on any character.
>>>
>>> I dont have any background threads running also.
>>>
>>> I referred this link
>>> http://stackoverflow.com/**questions/7683154/android-**
>>> softkeyboard-enter-the-**numeric-value-into-edittext-**very-slow<http://stackoverflow.com/questions/7683154/android-softkeyboard-enter-the-numeric-value-into-edittext-very-slow>
>>> .
>>>
>>> Any clues?
>>> Please respond .
>>>
>>>
>>>
>>> --
>>> Regards,
>>> Vani Reddy
>>>
>>  --
>> --
>> You received this message because you are subscribed to the Google
>> Groups "Android Developers" group.
>> To post to this group, send email to [email protected]
>> To unsubscribe from this group, send email to
>> [email protected]
>> For more options, visit this group at
>> http://groups.google.com/group/android-developers?hl=en
>> ---
>> You received this message because you are subscribed to the Google Groups
>> "Android Developers" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to [email protected].
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>>
>>
>
>
>
> --
> Regards,
> Vani Reddy
>



-- 
Regards,
Vani Reddy

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to