im displaying web page content in webview and i want to disable the all 4 arrow key of android keyboard. any idea?
edit:
public boolean onKeyDown(int keyCode, KeyEvent event) {
int a;
Log.d("yourTag",""+event.getAction());
System.out.println(a=event.getAction());
System.out.println(keyCode);
if(event.getAction()==20){
return true;
}
else if(event.getAction()==21){
return true;
}
else if(event.getAction()==22){
return true;
}
else{
return true;
}
}
scrolling still there but back key and menu key is disabled why? i noticed it returns nothing if content is scrolling. once scrolling ends it(log.d message) returns 0.
