FileDocCategorySizeDatePackage
RemoteDisplayProviderService.javaAPI DocAndroid 5.1 API14356Thu Mar 12 22:22:44 GMT 2015com.android.media.remotedisplay.test

RemoteDisplayProviderService

public class RemoteDisplayProviderService extends android.app.Service
Remote display provider implementation that publishes working routes.

Fields Summary
private static final String
TAG
private Provider
mProvider
Constructors Summary
Methods Summary
public android.os.IBinderonBind(android.content.Intent intent)


    
        
        if (intent.getAction().equals(RemoteDisplayProvider.SERVICE_INTERFACE)) {
            if (mProvider == null) {
                mProvider = new Provider();
                return mProvider.getBinder();
            }
        }
        return null;