You have to return your Binder inner class from
private final IBinder mBinder = new ServiceBinder();
public class ServiceBinder extends Binder {
public PlayerActivity getService() {
return PlayerActivity.this;
}
}
@Nullable
@Override
public IBinder onBind(Intent intent) {
return mBinder;
}