mirror of
https://github.com/M66B/FairEmail.git
synced 2025-03-04 02:28:18 +00:00
Small improvement
This commit is contained in:
parent
cde6bef586
commit
e4560402d8
1 changed files with 4 additions and 0 deletions
|
@ -427,6 +427,8 @@ public class Helper {
|
|||
static Integer getBatteryLevel(Context context) {
|
||||
try {
|
||||
BatteryManager bm = (BatteryManager) context.getSystemService(Context.BATTERY_SERVICE);
|
||||
if (bm == null)
|
||||
return null;
|
||||
return bm.getIntProperty(BatteryManager.BATTERY_PROPERTY_CAPACITY);
|
||||
} catch (Throwable ex) {
|
||||
Log.e(ex);
|
||||
|
@ -439,6 +441,8 @@ public class Helper {
|
|||
return false;
|
||||
try {
|
||||
BatteryManager bm = (BatteryManager) context.getSystemService(Context.BATTERY_SERVICE);
|
||||
if (bm == null)
|
||||
return false;
|
||||
return bm.isCharging();
|
||||
} catch (Throwable ex) {
|
||||
Log.e(ex);
|
||||
|
|
Loading…
Add table
Reference in a new issue