user1174960
user1174960

Reputation: 83

how to disable navigation keys in android programmatically

how do I disable the menu, home, back and search key programmatically in android, including the vibrate when those keys are pressed.

Upvotes: 3

Views: 3189

Answers (1)

Glitch
Glitch

Reputation: 2785

You can't disable the home button. The back button you'll need to override onBackPressed(), and the menu button shouldn't do anything unless you assign it an action.

If you mean disable these system-wide, I'm afraid glad you can't do that.

Upvotes: 2

Related Questions