当前位置: 代码迷 >> Android >> android 设立系统屏幕背光时间或锁屏间隔时间
  详细解决方案

android 设立系统屏幕背光时间或锁屏间隔时间

热度:91   发布时间:2016-05-01 15:22:31.0
android 设置系统屏幕背光时间或锁屏间隔时间

是系统不是当前应用的

?

?

?

?

	/**	 * 获得锁屏时间  毫秒	 */	  private int getScreenOffTime(){	    int screenOffTime=0;	    try{	    	screenOffTime = Settings.System.getInt(getContentResolver(), Settings.System.SCREEN_OFF_TIMEOUT);	    }	    catch (Exception localException){	    		    }	    return screenOffTime;	  }	/**	 * 设置背光时间  毫秒	 */	  private void setScreenOffTime(int paramInt){    	try{  	      Settings.System.putInt(getContentResolver(), Settings.System.SCREEN_OFF_TIMEOUT, paramInt);  	    }catch (Exception localException){  	      localException.printStackTrace();  	    }	  }
?
  相关解决方案