All Downloads are FREE. Search and download functionalities are using the official Maven repository.

android.os.IServiceCallback Maven / Gradle / Ivy

Go to download

provide android hidden api definition ,helper for android super framework development

There is a newer version: 1.11
Show newest version
package android.os;
public interface IServiceCallback extends IInterface
{
    public static abstract class Stub extends Binder implements IServiceCallback {
    }
    /**
     * Called when a service is registered.
     *
     * @param name the service name that has been registered with
     * @param binder the binder that is registered
     */
    public void onRegistration(String name, IBinder binder) throws RemoteException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy