tags:

views:

71

answers:

3

Hi i want to deactivate the touch screen of my android device for some application. Anyone plz help me.......

Thanx in adv

A: 

A quick search only on stackoverflow returns this:

http://stackoverflow.com/questions/2370398/how-to-disable-touch-screen-in-android-phone

Martin
A: 

You cannot "deactivate the touch screen". You are welcome to design your own UI that does not respond to touch input.

CommonsWare
+1  A: 

put a transparent Layout and override the OnTouch Events!

@Override
OnTouch():
 OnTouch(){
   return false;
} 

Update:: How to avoid Touch Event

Jorgesys