`

滑动acitivty的数据交互

 
阅读更多

可以将你要执行的方法checkPendingNotification在onUserInteraction()和onWindowFocusChanged()中调用

    @Override
    public void onUserInteraction() {
        checkPendingNotification();
    }

    @Override
    public void onWindowFocusChanged(boolean hasFocus) {
        if (hasFocus) {
            checkPendingNotification();
        }
    }

 

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics