How to capture key events inside a service?

后端 未结 5 1993
天命终不由人
天命终不由人 2021-01-05 12:51

I want to be able to capture key events inside a service I am writing. I can do this inside an activity without problems, but all my attemps to get this working in a service

5条回答
  •  执笔经年
    2021-01-05 13:39

    A Service has no UI so it doesn't receive any input from the User.

    Now if you had an activity that managed the service then you could make the service do something special when the back key was pressed while in your activity.

提交回复
热议问题