当前位置: 首页>>代码示例>>Java>>正文


Java ContextWrapper.unbindService方法代码示例

本文整理汇总了Java中android.content.ContextWrapper.unbindService方法的典型用法代码示例。如果您正苦于以下问题:Java ContextWrapper.unbindService方法的具体用法?Java ContextWrapper.unbindService怎么用?Java ContextWrapper.unbindService使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在android.content.ContextWrapper的用法示例。


在下文中一共展示了ContextWrapper.unbindService方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: unbindFromService

import android.content.ContextWrapper; //导入方法依赖的package包/类
/**
 * @param token The {@link ServiceToken} to unbind from
 */
public static void unbindFromService(final ServiceToken token) {
    if (token == null) {
        return;
    }

    final ContextWrapper mContextWrapper = token.mWrappedContext;
    final ServiceBinder mBinder = mConnectionMap.remove(mContextWrapper);
    if (mBinder == null) {
        return;
    }

    mContextWrapper.unbindService(mBinder);
    if (mConnectionMap.isEmpty()) {
        mService = null;
    }
}
 
开发者ID:PhoenixDevTeam,项目名称:Phoenix-for-VK,代码行数:20,代码来源:UploadUtils.java

示例2: unbindFromService

import android.content.ContextWrapper; //导入方法依赖的package包/类
/**
 * @param token The {@link ServiceToken} to unbind from
 */
public static void unbindFromService(final ServiceToken token) {
    if (token == null) {
        return;
    }

    final ContextWrapper mContextWrapper = token.mWrappedContext;
    final ServiceBinder mBinder = mConnectionMap.remove(mContextWrapper);
    if (mBinder == null) {
        return;
    }

    mContextWrapper.unbindService(mBinder);

    if (mConnectionMap.isEmpty()) {
        mService = null;
    }
}
 
开发者ID:PhoenixDevTeam,项目名称:Phoenix-for-VK,代码行数:21,代码来源:MusicUtils.java

示例3: unbindFromService

import android.content.ContextWrapper; //导入方法依赖的package包/类
public static void unbindFromService(ServiceToken token) {
    if (token == null) {
        return;
    }
    ContextWrapper cw = token.mWrappedContext;
    ServiceBinder sb = sConnectionMap.remove(cw);
    if (sb == null) {
        return;
    }
    cw.unbindService(sb);
    if (sConnectionMap.isEmpty()) {
        // presumably there is nobody interested in the service at this
        // point,
        // so don't hang on to the ServiceConnection
        sService = null;
    }
}
 
开发者ID:89luca89,项目名称:ThunderMusic,代码行数:18,代码来源:MusicUtils.java

示例4: unbindFromService

import android.content.ContextWrapper; //导入方法依赖的package包/类
public static void unbindFromService(@Nullable final ServiceToken token) {
    if (token == null) {
        return;
    }
    final ContextWrapper mContextWrapper = token.mWrappedContext;
    final ServiceBinder mBinder = mConnectionMap.remove(mContextWrapper);
    if (mBinder == null) {
        return;
    }
    mContextWrapper.unbindService(mBinder);
    if (mConnectionMap.isEmpty()) {
        musicService = null;
    }
}
 
开发者ID:aliumujib,项目名称:Orin,代码行数:15,代码来源:MusicPlayerRemote.java

示例5: unbindFromService

import android.content.ContextWrapper; //导入方法依赖的package包/类
public static void unbindFromService(final ServiceToken token) {
    if (token == null) {
        return;
    }
    final ContextWrapper mContextWrapper = token.mWrappedContext;
    final ServiceBinder mBinder = mConnectionMap.remove(mContextWrapper);
    if (mBinder == null) {
        return;
    }
    mContextWrapper.unbindService(mBinder);
    if (mConnectionMap.isEmpty()) {
        mService = null;
    }
}
 
开发者ID:Vinetos,项目名称:Hello-Music-droid,代码行数:15,代码来源:MusicPlayer.java

示例6: unbindFromService

import android.content.ContextWrapper; //导入方法依赖的package包/类
/**
 * @param token The {@link ServiceToken} to unbind from
 */
public static void unbindFromService(final ServiceToken token) {
    if (token == null) {
        return;
    }
    final ContextWrapper mContextWrapper = token.mWrappedContext;
    final ServiceBinder mBinder = mConnectionMap.remove(mContextWrapper);
    if (mBinder == null) {
        return;
    }
    mContextWrapper.unbindService(mBinder);
    if (mConnectionMap.isEmpty()) {
        mService = null;
    }
}
 
开发者ID:komamj,项目名称:KomaMusic,代码行数:18,代码来源:MusicUtils.java


注:本文中的android.content.ContextWrapper.unbindService方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。