Hi i want to deactivate the touch screen of my android device for some application. Anyone plz help me.......
Thanx in adv
Hi i want to deactivate the touch screen of my android device for some application. Anyone plz help me.......
Thanx in adv
A quick search only on stackoverflow returns this:
http://stackoverflow.com/questions/2370398/how-to-disable-touch-screen-in-android-phone
You cannot "deactivate the touch screen". You are welcome to design your own UI that does not respond to touch input.
put a transparent Layout and override the OnTouch Events!
@Override
OnTouch():
OnTouch(){
return false;
}
Update:: How to avoid Touch Event