Dana
8 天以前 c7ac050c321385eac1e5938575c99304e68317c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.safeluck.floatwindow;
 
import com.safeluck.floatwindow.MediaArgu;
import com.safeluck.floatwindow.IMyCallback;
// Declare any non-default types here with import statements
 
interface IMediaAidlInterface {
    /**
     * Demonstrates some basic types that you can use as parameters
     * and return values in AIDL.
     */
    void basicTypes(int anInt, long aLong, boolean aBoolean, float aFloat,
            double aDouble, String aString);
 
//            void transferInfo(String info);
            void startMedia(in MediaArgu media);
 
            void stopMedia();
            void registerCallback(in IMyCallback cb);
            void unregisterCallback(in IMyCallback cb);
}