admin
2021-06-11 ae4dc86b64bd8ef85bc832106741fb98e8d516da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.huawei.android.hms.agent.common;
 
import android.app.Activity;
 
/**
 * Activity onResume 事件回调接口
 */
public interface IActivityResumeCallback {
 
    /**
     * Activity onResume回调
     * @param activity 发生 onResume 事件的activity
     */
    void onActivityResume(Activity activity);
}