當前位置: 首頁>>代碼示例>>Java>>正文


Java WakeLock.release方法代碼示例

本文整理匯總了Java中android.os.PowerManager.WakeLock.release方法的典型用法代碼示例。如果您正苦於以下問題:Java WakeLock.release方法的具體用法?Java WakeLock.release怎麽用?Java WakeLock.release使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在android.os.PowerManager.WakeLock的用法示例。


在下文中一共展示了WakeLock.release方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: wakeUpScreen

import android.os.PowerManager.WakeLock; //導入方法依賴的package包/類
@SuppressWarnings("deprecation")
	private static void wakeUpScreen (Context ctx) {
		 PowerManager pm = (PowerManager)ctx.getSystemService(Context.POWER_SERVICE);
		 boolean isScreenOn = true;
		 // greater or equal to api level 20
		 if (Build.VERSION.SDK_INT > AlarmNotificationUtil.FAKE_KITKAT_WATCH) {
			 isScreenOn = pm.isInteractive();
		     Log.v("cpeng", "alarm screen is interactive");
		 }
		 else if (Build.VERSION.SDK_INT <= AlarmNotificationUtil.FAKE_KITKAT_WATCH) {
			 isScreenOn = pm.isScreenOn();
			 Log.v("cpeng", "alarm screen is on");
		 }
		 else {
			 Log.v("cpeng", "alarm screen OFF");
		 }

         if(isScreenOn==false)
         {
        	 WakeLock wl = pm.newWakeLock(PowerManager.SCREEN_DIM_WAKE_LOCK | PowerManager.ACQUIRE_CAUSES_WAKEUP | PowerManager.ON_AFTER_RELEASE,"ALock");
        	 wl.acquire(10000);
        	 wl.release();
//        	 WakeLock wl_cpu = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,"ACPULock");
//        	 wl_cpu.acquire(10000);
         }
	 }
 
開發者ID:michaelpengcn,項目名稱:notificationtest,代碼行數:27,代碼來源:AlarmNotificationReceiver.java

示例2: run

import android.os.PowerManager.WakeLock; //導入方法依賴的package包/類
@Override
public void run() {
  notification              = initializeBackgroundNotification();
  PowerManager powerManager = (PowerManager)getSystemService(Context.POWER_SERVICE);
  WakeLock     wakeLock     = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "Migration");

  try {
    wakeLock.acquire();

    setState(new ImportState(ImportState.STATE_MIGRATING_BEGIN, null));

    SmsMigrator.migrateDatabase(ApplicationMigrationService.this,
                                masterSecret,
                                ApplicationMigrationService.this);

    setState(new ImportState(ImportState.STATE_MIGRATING_COMPLETE, null));

    setDatabaseImported(ApplicationMigrationService.this);
    stopForeground(true);
    notifyImportComplete();
    stopSelf();
  } finally {
    wakeLock.release();
  }
}
 
開發者ID:XecureIT,項目名稱:PeSanKita-android,代碼行數:26,代碼來源:ApplicationMigrationService.java

示例3: completeWakefulIntent

import android.os.PowerManager.WakeLock; //導入方法依賴的package包/類
public static boolean completeWakefulIntent(Intent intent) {
    int id = intent.getIntExtra(EXTRA_WAKE_LOCK_ID, 0);
    if (id == 0) {
        return false;
    }
    synchronized (mActiveWakeLocks) {
        WakeLock wl = (WakeLock) mActiveWakeLocks.get(id);
        if (wl != null) {
            wl.release();
            mActiveWakeLocks.remove(id);
            return true;
        }
        Log.w("WakefulBroadcastReceiver", "No active wake lock id #" + id);
        return true;
    }
}
 
開發者ID:JackChan1999,項目名稱:letv,代碼行數:17,代碼來源:WakefulBroadcastReceiver.java

示例4: onReceive

import android.os.PowerManager.WakeLock; //導入方法依賴的package包/類
/**
 * Sets alarm on ACTION_BOOT_COMPLETED.  Resets alarm on
 * TIME_SET, TIMEZONE_CHANGED
 */
@Override
public void onReceive(final Context context, Intent intent) {
  final String action = intent.getAction();
  Log.d("AlarmInitReceiver" + action);
  if (App.fejlsøgning) App.langToast("AlarmInitReceiver onReceive(" + intent);

  //final PendingResult result = goAsync();
  final WakeLock wl = AlarmAlertWakeLock.createPartialWakeLock(context);
  if (wl!=null) wl.acquire(); // fix for https://mint.splunk.com/dashboard/project/cd78aa05/errors/3315048120

  Alarms.setNextAlert(context);
  //      result.finish();
  Log.d("AlarmInitReceiver finished");
  if (wl!=null) wl.release(); // fix for https://mint.splunk.com/dashboard/project/cd78aa05/errors/3315048120
}
 
開發者ID:nordfalk,項目名稱:EsperantoRadio,代碼行數:20,代碼來源:AlarmInitReceiver.java

示例5: onReceive

import android.os.PowerManager.WakeLock; //導入方法依賴的package包/類
@Override
      @SuppressLint("Wakelock")
public void onReceive(Context context, Intent intent) {
	traceDebug(TAG, "Internal network status receive.");
	// we protect against the phone switching off
	// by requesting a wake lock - we request the minimum possible wake
	// lock - just enough to keep the CPU running until we've finished
	PowerManager pm = (PowerManager) getSystemService(POWER_SERVICE);
	WakeLock wl = pm
			.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "MQTT");
	wl.acquire();
	traceDebug(TAG,"Reconnect for Network recovery.");
	if (isOnline()) {
		traceDebug(TAG,"Online,reconnect.");
		// we have an internet connection - have another try at
		// connecting
		reconnect();
	} else {
		notifyClientsOffline();
	}

	wl.release();
}
 
開發者ID:Cirrus-Link,項目名稱:Sparkplug,代碼行數:24,代碼來源:MqttService.java

示例6: processLocation

import android.os.PowerManager.WakeLock; //導入方法依賴的package包/類
private WeatherLocation processLocation(Location location) {
	if (location != null) {
		PowerManager powerManager = (PowerManager) mApplicationContext.getSystemService(Context.POWER_SERVICE);
		WakeLock wakeLock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "MobileWeatherProcessLocation");

		try {
			wakeLock.acquire();
			WeatherLocation loc = null;
			
			if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.GINGERBREAD && Geocoder.isPresent()) {
				loc = reverseGeocode(location);
			}
			else {
				loc = new WeatherLocation();
				GPSLocation gpsLoc = new GPSLocation();
				gpsLoc.latitude = String.valueOf(location.getLatitude());
				gpsLoc.longitude = String.valueOf(location.getLongitude());
				loc.gpsLocation = gpsLoc;		
			}
			return loc;
		} finally {
			wakeLock.release();
		}
	}
	return null;
}
 
開發者ID:smartdevicelink,項目名稱:sdl_mobileweather_tutorial_android,代碼行數:27,代碼來源:WeatherLocationServices.java

示例7: riseAndShine

import android.os.PowerManager.WakeLock; //導入方法依賴的package包/類
@SuppressWarnings("deprecation")
private void riseAndShine(Activity activity) {
    KeyguardManager keyguardManager = (KeyguardManager) activity.getSystemService(Context.KEYGUARD_SERVICE);
    KeyguardLock keyguardLock = keyguardManager.newKeyguardLock(activity.getLocalClassName());
    keyguardLock.disableKeyguard();

    activity.getWindow().addFlags(WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED);

    PowerManager powerManager = (PowerManager) activity.getSystemService(Context.POWER_SERVICE);
    WakeLock lock = powerManager.newWakeLock(
            PowerManager.FULL_WAKE_LOCK | PowerManager.ACQUIRE_CAUSES_WAKEUP | PowerManager.ON_AFTER_RELEASE,
            "wakeup!");

    lock.acquire();
    lock.release();
}
 
開發者ID:sregg,項目名稱:spotify-tv,代碼行數:17,代碼來源:EspressoTestRule.java

示例8: onReceive

import android.os.PowerManager.WakeLock; //導入方法依賴的package包/類
@Override
public void onReceive(Context context, Intent intent) {
	traceDebug(TAG, "Internal network status receive.");
	// we protect against the phone switching off
	// by requesting a wake lock - we request the minimum possible wake
	// lock - just enough to keep the CPU running until we've finished
	PowerManager pm = (PowerManager) getSystemService(POWER_SERVICE);
	WakeLock wl = pm
			.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "MQTT");
	wl.acquire();
	
	if (isOnline()) {
		// we have an internet connection - have another try at
		// connecting
		reconnect();
	} else {
		notifyClientsOffline();
	}
	
	wl.release();
}
 
開發者ID:octoblu,項目名稱:droidblu,代碼行數:22,代碼來源:MqttService.java

示例9: onReceive

import android.os.PowerManager.WakeLock; //導入方法依賴的package包/類
@Override
public void onReceive(Context ctx, Intent intent)
{
    // we protect against the phone switching off while we're doing this
    //  by requesting a wake lock - we request the minimum possible wake
    //  lock - just enough to keep the CPU running until we've finished
    PowerManager pm = (PowerManager) getSystemService(POWER_SERVICE);
    WakeLock wl = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "MQTT");
    wl.acquire();

    if (isOnline())
    {
        // we have an internet connection - have another try at connecting
        if (connectToBroker())
        {
            // we subscribe to a topic - registering to receive push
            //  notifications with a particular key
            subscribeToTopic(topicName);
        }
    }

    // we're finished - if the phone is switched off, it's okay for the CPU
    //  to sleep now
    wl.release();
}
 
開發者ID:thingtrack,項目名稱:konekti,代碼行數:26,代碼來源:GPSservice.java

示例10: onReceive

import android.os.PowerManager.WakeLock; //導入方法依賴的package包/類
@Override
public void onReceive(Context ctx, Intent intent) {     	
   	//Unlock device screen
	PowerManager pm = (PowerManager) ctx.getSystemService(Context.POWER_SERVICE);
    WakeLock wl = pm.newWakeLock(PowerManager.FULL_WAKE_LOCK | PowerManager.ACQUIRE_CAUSES_WAKEUP, "TAG");
    wl.acquire(30*1000);
	
    mKeyGuardManager = (KeyguardManager) ctx.getSystemService(Context.KEYGUARD_SERVICE);
	KeyguardLock mLock = mKeyGuardManager.newKeyguardLock("com.inostudio.alar_clock");
	mLock.disableKeyguard();
    
	//Create notification
	creatNotification(ctx);
	
	//Start dialog
	Intent dialog = new Intent();
	dialog.setClassName("com.inostudio.alarm_clock", "com.inostudio.alarm_clock.RootActivity");
	dialog.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
	ctx.startActivity(dialog);
	
	//release screen
	wl.release();
}
 
開發者ID:vpeschenkov,項目名稱:AlarmClock-Android,代碼行數:24,代碼來源:AlarmManagerBroadcastReceiver.java

示例11: onPause

import android.os.PowerManager.WakeLock; //導入方法依賴的package包/類
protected void onPause() {
	
	// remove wake lock
	WakeLock lock = mLock;
	if (lock != null) lock.release();
	mLock = null;
	
	mSwitchDetector.inactivate(this);
	
	super.onPause();
}
 
開發者ID:sdrausty,項目名稱:buildAPKsApps,代碼行數:12,代碼來源:ScreenLightActivity.java

示例12: cancelKeepScreen

import android.os.PowerManager.WakeLock; //導入方法依賴的package包/類
/**
 * 取消屏幕常亮
 *
 * @param activity you know
 */
public static void cancelKeepScreen(Activity activity) {
    WakeLock wakeLock = mWakeLockArray.get(activity);
    if (wakeLock != null) {
        if (wakeLock.isHeld()) {
            wakeLock.release();
        }
    }

    Log.i(TAG, "取消屏幕常亮");
}
 
開發者ID:guiying712,項目名稱:AndroidModulePattern,代碼行數:16,代碼來源:ScreenLockUtil.java

示例13: _releaseWakeLock

import android.os.PowerManager.WakeLock; //導入方法依賴的package包/類
private boolean _releaseWakeLock(WakeLock lock) {
    synchronized (lock) {
        if (lock.isHeld()) {
            lock.release();
            return true;
        }
    }
    return false;
}
 
開發者ID:zxcpoiu,項目名稱:react-native-incall-manager,代碼行數:10,代碼來源:InCallWakeLockUtils.java

示例14: releaseWakeLock

import android.os.PowerManager.WakeLock; //導入方法依賴的package包/類
public static void releaseWakeLock(WakeLock wakeLock)
{
	if(wakeLock != null)
	{
		if(wakeLock.isHeld())
		{
			wakeLock.release();
		}
	}
}
 
開發者ID:ZalemSoftware,項目名稱:OpenMobster,代碼行數:11,代碼來源:GeneralTools.java

示例15: onLocationChanged

import android.os.PowerManager.WakeLock; //導入方法依賴的package包/類
@Override
public void onLocationChanged(Location location) {
	if (location != null) {
		PowerManager powerManager = (PowerManager) mApplicationContext.getSystemService(Context.POWER_SERVICE);
		WakeLock wakeLock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "MobileWeatherLocationChanged");

		try {
			wakeLock.acquire();
			Intent intent = new Intent("com.ford.mobileweather.Location");
			WeatherLocation loc = processLocation(location);
			
			if (loc != null) {
				if (mDataManager != null) {
					mDataManager.setCurrentLocation(loc);
	        		reportLocationAvail(true);
		        	if (((System.currentTimeMillis() - mLastLocationTime) / 1000.0 > MIN_TIME_BETWEEN_LOCATION_UPDATES)) {
		        		LocalBroadcastManager.getInstance(mApplicationContext).sendBroadcast(intent);
		        		mLastLocationTime = System.currentTimeMillis();
		            }
				}
			} else {
				Log.e(SmartDeviceLinkApplication.TAG, "onLocationChanged: loc == null");
				reportLocationAvail(false);
			}
		} finally {
			wakeLock.release();
		}
	} else {
		Log.e(SmartDeviceLinkApplication.TAG, "onLocationChanged: location == null");
		reportLocationAvail(false);
		
	}
}
 
開發者ID:smartdevicelink,項目名稱:sdl_mobileweather_tutorial_android,代碼行數:34,代碼來源:WeatherLocationServices.java


注:本文中的android.os.PowerManager.WakeLock.release方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。