TestService.java
576 Bytes
package com.hjx.personalcenter.service;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.os.RemoteException;
/**
* Created by h on 2017/9/1.
*/
public class TestService extends Service {
public TestService(){
}
IPresonalInterface.Stub binder = new IPresonalInterface.Stub() {
@Override
public String sayHello() throws RemoteException {
return "这是测试AIDL的方法";
}
};
@Override
public IBinder onBind(Intent intent) {
return binder;
}
}