Getting window display from service android

后端 未结 2 1418
终归单人心
终归单人心 2021-01-05 07:04

I am trying to display a window from service but don\'t getting it how to do this

Here is my code--

In onStart method of Service



        
2条回答
  •  臣服心动
    2021-01-05 07:43

    Key handling can also be implemented in service !! Generally if WindowManager is used to display view in service it does'nt take any key events most of the time !!

    But you can make an interface with 'dispatchKeyEvent' or any other key handling methods(onKeyUp, onKeyDown etc.) and implement them is service.

    Happy coding.

提交回复
热议问题