Is there anyway to intercept that a hard key was pressed by using a service in order to launch an activity?
In other words : Is it possible to handle the KeyEvents i
There is no general way to listen for the key events of the hardware keys from anything besides the currently active application.
Only the CAMERA button event can be detected, via its broadcast Intent
.
The ACTION_CAMERA_BUTTON is broadcast when the CAMERA button is pressed and is not intercepted by the foreground activity: developer.android.com/reference/android/content/…
This means you can only detect the press if the application in the foreground is not handling the key press.
Yes. You can capture KeyEvents with an InputMethodService. The Hard-Keys have their own key codes, just like the Soft-Keys.
Look at the SoftKeypad example that google made.