[android-beginners] Re: My app is missing in HTC tattoo market

2010-01-21 Thread Jason Arora
Couple of things you can try: turn Copy-Protection OFF remove the requires camera permission in the Manifest (if possible) Those two conditions have been known to cause problems. Try searching the Android groups for more information. On Jan 18, 3:58 am, andersg wrote: > HI, > > Yes it shows on m

[android-beginners] Re: Keys don't work with SurfaceView

2010-01-21 Thread Jason Arora
That's strange, I posted a reply but my message did not appear. Sorry if I end up double-posting. Try adding setFocusableInTouchMode(true) in addition to setFocusable (true). Also, your onKey callback looks incomplete, it should look more like this: @Override public boolean onKeyDown(int keyCode

[android-beginners] Re: Keys don't work with SurfaceView

2010-01-21 Thread Jason Arora
In addition to setFocusable, try calling setFocusableInTouchMode (true). Your onKey should look more like this: @Override public boolean onKeyDown(int keyCode, KeyEvent event) {...} @Override public boolean onKeyUp(int keyCode, KeyEvent event) {...} On Jan 15, 10:21 am, guich wrote: > Hi, > >