Intent battIntent = registerReceiver(null, new IntentFilter(Intent.ACTION_BATTERY_CHANGED));
int battScale = battIntent.getIntExtra(BatteryManager.EXTRA_SCALE, 100);
int battLevel = battIntent.getIntExtra(BatteryManager.EXTRA_LEVEL, -1);
Log.v("battLevel:"+battLevel+", battScale:"+battScale);
if(battLevel < 5){
finish();
return;
}
'programmer > android' 카테고리의 다른 글
EditText bottom space (0) | 2012.12.13 |
---|---|
android.database.StaleDataException (0) | 2012.12.12 |
이클립스 환경 설정 (1) | 2012.09.22 |
java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first. (0) | 2011.11.28 |
ddms에서 한글이 깨져 보일때 (0) | 2011.11.24 |