Dana
7 天以前 33b4919c10b89a88141a1f508b4db5a9183e07e7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.safeluck.floatwindow;
 
import com.safeluck.floatwindow.ResponseVO;
 
/**
 * Demonstrates some basic types that you can use as parameters
 * and return values in AIDL.
 */
interface IMyCallback {
    /**
     * Demonstrates some basic types that you can use as parameters
     * and return values in AIDL.
     */
    void onResult(in ResponseVO re);
}