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


Java ReceiverCallNotAllowedException类代码示例

本文整理汇总了Java中android.content.ReceiverCallNotAllowedException的典型用法代码示例。如果您正苦于以下问题:Java ReceiverCallNotAllowedException类的具体用法?Java ReceiverCallNotAllowedException怎么用?Java ReceiverCallNotAllowedException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: tryToRegisterForNetworkStatusNotifications

import android.content.ReceiverCallNotAllowedException; //导入依赖的package包/类
private boolean tryToRegisterForNetworkStatusNotifications(Context context) {
    synchronized (lock) {
        if (hasRegisteredReceiver) {
            return true;
        }

        try {
            if (context == null) {
                return false;
            }
            context = context.getApplicationContext();
            context.registerReceiver(this, new IntentFilter(ConnectivityManager.CONNECTIVITY_ACTION));
            hasRegisteredReceiver = true;
            return true;
        } catch (ReceiverCallNotAllowedException e) {
            return false;
        }
    }
}
 
开发者ID:zuoweitan,项目名称:Hitalk,代码行数:20,代码来源:ConnectivityNotifier.java

示例2: getCurrentStatus

import android.content.ReceiverCallNotAllowedException; //导入依赖的package包/类
public void getCurrentStatus(final Context context) {
    IntentFilter ifilter = new IntentFilter(Intent.ACTION_BATTERY_CHANGED);

    try {
        Intent batteryStatus = context.registerReceiver(null, ifilter);

        if (batteryStatus != null) {
            level = batteryStatus.getIntExtra(BatteryManager.EXTRA_LEVEL, -1);
            scale = batteryStatus.getIntExtra(BatteryManager.EXTRA_SCALE, -1);
            mHealth = batteryStatus.getIntExtra(BatteryManager.EXTRA_HEALTH, 0);
            plugged = batteryStatus.getIntExtra(BatteryManager.EXTRA_PLUGGED, 0);
            present = batteryStatus.getExtras().getBoolean(BatteryManager.EXTRA_PRESENT);
            status = batteryStatus.getIntExtra(BatteryManager.EXTRA_STATUS, 0);
            technology = batteryStatus.getExtras().getString(BatteryManager.EXTRA_TECHNOLOGY);
            temperature = (float) (batteryStatus.getIntExtra(BatteryManager.EXTRA_TEMPERATURE, 0) / 10);
            voltage = (float) (batteryStatus.getIntExtra(BatteryManager.EXTRA_VOLTAGE, 0) / 1000);
        }
    } catch (ReceiverCallNotAllowedException e) {
        LOGE(TAG, "ReceiverCallNotAllowedException from Notification Receiver?");
        e.printStackTrace();
    }
}
 
开发者ID:greenhub-project,项目名称:batteryhub,代码行数:23,代码来源:DataEstimator.java

示例3: registerReceiver

import android.content.ReceiverCallNotAllowedException; //导入依赖的package包/类
@Override public Intent registerReceiver(final BroadcastReceiver receiver, final IntentFilter filter,
										 final @Nullable String broadcastPermission, final @Nullable Handler scheduler) {
	if (receiver == null) {
		// Allow retrieving current sticky broadcast; this is safe since we
		// aren't actually registering a receiver.
		return super.registerReceiver(null, filter, broadcastPermission, scheduler);
	} else {
		throw new ReceiverCallNotAllowedException(
				"BroadcastReceiver components are not allowed to register to receive intents");
	}
}
 
开发者ID:oasisfeng,项目名称:condom,代码行数:12,代码来源:CondomCore.java

示例4: onReceive

import android.content.ReceiverCallNotAllowedException; //导入依赖的package包/类
@Override
public void onReceive(Context context, Intent intent) {
    LOGI(TAG, "onReceive called!");
    try {
        Notifier.updateStatusBar(context);
    } catch (ReceiverCallNotAllowedException e) {
        e.printStackTrace();
    }
}
 
开发者ID:greenhub-project,项目名称:batteryhub,代码行数:10,代码来源:NotificationReceiver.java

示例5: bindService

import android.content.ReceiverCallNotAllowedException; //导入依赖的package包/类
@Override public boolean bindService(final Intent service, final ServiceConnection conn, final int flags) {
	throw new ReceiverCallNotAllowedException(
			"BroadcastReceiver components are not allowed to bind to services");
}
 
开发者ID:oasisfeng,项目名称:condom,代码行数:5,代码来源:CondomCore.java


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