Hello Dianne,

I don't have access to the physical devices, but the Motorola emulator was 
very helpful. I agree with your thoughts that the multi-touch keyboard 
might be at the root and I've posted to the Motorola forums with the sample 
project that demonstrates the issue. Hopefully they will take a look and 
make a determination as to where the issue actually lies.

But, on a more positive front, I took you advice and did some research on 
the onCreateInputConnection. By adding the following to my component, the 
problem has resolved itself. I got it to working on the Motorola emulator 
and a couple of very helpful customers tested it on their physical devices.


@Override
public InputConnection onCreateInputConnection(EditorInfo outAttrs) {
return new BaseInputConnection(this, false) {
@Override
public boolean sendKeyEvent(KeyEvent event) {
return super.sendKeyEvent(event);
}
};
}

Thank you again for your advice and participation in this forum. I am AGAIN 
extremely grateful for your help.

Best Regards,
Eric

-- 
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

Reply via email to