Ejemplo n.º 1
0
		public override void removeStickyBroadcast(android.content.Intent intent)
		{
			string resolvedType = intent.resolveTypeIfNeeded(getContentResolver());
			if (resolvedType != null)
			{
				intent = new android.content.Intent(intent);
				intent.setDataAndType(intent.getData(), resolvedType);
			}
			try
			{
				intent.setAllowFds(false);
				android.app.ActivityManagerNative.getDefault().unbroadcastIntent(mMainThread.getApplicationThread
					(), intent);
			}
			catch (android.os.RemoteException)
			{
			}
		}