When exactly is onUserInteraction() called?

后端 未结 2 1869
余生分开走
余生分开走 2021-01-18 11:17

in my app I got a thrad that checks every 60s data from a webservice (defined in onCreate()):

new Thread(new Runnable() {
    @Override
    public void run()         


        
2条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-18 11:51

    The Android documentation makes this very clear. It states :

    public void onUserInteraction ()
    

    Called whenever a key, touch, or trackball event is dispatched to the activity. Implement this method if you wish to know that the user has interacted with the device in some way while your activity is running. This callback and onUserLeaveHint() are intended to help activities manage status bar notifications intelligently; specifically, for helping activities determine the proper time to cancel a notfication.

    All calls to your activity's onUserLeaveHint() callback will be accompanied by calls to onUserInteraction(). This ensures that your activity will be told of relevant user activity such as pulling down the notification pane and touching an item there.

    Note that this callback will be invoked for the touch down action that begins a touch gesture, but may not be invoked for the touch-moved and touch-up actions that follow.

提交回复
热议问题