> Although now I'm having a problem of not being able to receive
> onKeyDown messages for some reason! Probably because I need to check
> input during my thread..... any ideas/thoughts?

You need to make the SurfaceView focusable.  I do this in the
Activity:

myView.setFocusable(true);
myView.setFocusableInTouchMode(true);

and this in the View:

requestFocus();

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to