forked from LineageOS/android_packages_apps_Settings
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Settings: deviceinfo: Extend Battery info page
Change-Id: I5fcff258c878bd12d252321f269b89f3afa334ab Signed-off-by: Jyotiraditya Panda <[email protected]> Signed-off-by: Adithya R <[email protected]>
- Loading branch information
1 parent
32537c0
commit 7d6af24
Showing
11 changed files
with
445 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 54 additions & 0 deletions
54
...om/android/settings/deviceinfo/batteryinfo/BatteryDesignCapacityPreferenceController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/* | ||
* Copyright (C) 2024 Paranoid Android | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.android.settings.deviceinfo.batteryinfo; | ||
|
||
import android.content.Context; | ||
import android.content.Intent; | ||
import android.os.BatteryManager; | ||
|
||
import com.android.settings.R; | ||
import com.android.settings.core.BasePreferenceController; | ||
import com.android.settingslib.fuelgauge.BatteryUtils; | ||
|
||
/** | ||
* A controller that manages the information about battery design capacity. | ||
*/ | ||
public class BatteryDesignCapacityPreferenceController extends BasePreferenceController { | ||
|
||
public BatteryDesignCapacityPreferenceController(Context context, String preferenceKey) { | ||
super(context, preferenceKey); | ||
} | ||
|
||
@Override | ||
public int getAvailabilityStatus() { | ||
return AVAILABLE; | ||
} | ||
|
||
@Override | ||
public CharSequence getSummary() { | ||
Intent batteryIntent = BatteryUtils.getBatteryIntent(mContext); | ||
final int designCapacityUah = | ||
batteryIntent.getIntExtra(BatteryManager.EXTRA_DESIGN_CAPACITY, -1); | ||
|
||
if (designCapacityUah != -1) { | ||
int designCapacity = designCapacityUah / 1_000; | ||
return mContext.getString(R.string.battery_design_capacity_summary, designCapacity); | ||
} | ||
|
||
return mContext.getString(R.string.battery_design_capacity_not_available); | ||
} | ||
} |
65 changes: 65 additions & 0 deletions
65
src/com/android/settings/deviceinfo/batteryinfo/BatteryHealthPreferenceController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* | ||
* Copyright (C) 2024 Paranoid Android | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.android.settings.deviceinfo.batteryinfo; | ||
|
||
import android.content.Context; | ||
import android.content.Intent; | ||
import android.os.BatteryManager; | ||
|
||
import com.android.settings.R; | ||
import com.android.settings.core.BasePreferenceController; | ||
import com.android.settingslib.fuelgauge.BatteryUtils; | ||
|
||
/** | ||
* A controller that manages the information about battery health. | ||
*/ | ||
public class BatteryHealthPreferenceController extends BasePreferenceController { | ||
|
||
public BatteryHealthPreferenceController(Context context, String preferenceKey) { | ||
super(context, preferenceKey); | ||
} | ||
|
||
@Override | ||
public int getAvailabilityStatus() { | ||
return AVAILABLE; | ||
} | ||
|
||
@Override | ||
public CharSequence getSummary() { | ||
final Intent batteryIntent = BatteryUtils.getBatteryIntent(mContext); | ||
final int health = | ||
batteryIntent.getIntExtra( | ||
BatteryManager.EXTRA_HEALTH, BatteryManager.BATTERY_HEALTH_UNKNOWN); | ||
|
||
switch (health) { | ||
case BatteryManager.BATTERY_HEALTH_GOOD: | ||
return mContext.getString(R.string.battery_health_good); | ||
case BatteryManager.BATTERY_HEALTH_OVERHEAT: | ||
return mContext.getString(R.string.battery_health_overheat); | ||
case BatteryManager.BATTERY_HEALTH_DEAD: | ||
return mContext.getString(R.string.battery_health_dead); | ||
case BatteryManager.BATTERY_HEALTH_OVER_VOLTAGE: | ||
return mContext.getString(R.string.battery_health_over_voltage); | ||
case BatteryManager.BATTERY_HEALTH_UNSPECIFIED_FAILURE: | ||
return mContext.getString(R.string.battery_health_unspecified_failure); | ||
case BatteryManager.BATTERY_HEALTH_COLD: | ||
return mContext.getString(R.string.battery_health_cold); | ||
default: | ||
return mContext.getString(R.string.battery_health_unknown); | ||
} | ||
} | ||
} |
60 changes: 60 additions & 0 deletions
60
...m/android/settings/deviceinfo/batteryinfo/BatteryMaximumCapacityPreferenceController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/* | ||
* Copyright (C) 2024 Paranoid Android | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.android.settings.deviceinfo.batteryinfo; | ||
|
||
import android.content.Context; | ||
import android.content.Intent; | ||
import android.os.BatteryManager; | ||
|
||
import com.android.settings.R; | ||
import com.android.settings.core.BasePreferenceController; | ||
import com.android.settingslib.fuelgauge.BatteryUtils; | ||
|
||
/** | ||
* A controller that manages the information about battery maximum capacity. | ||
*/ | ||
public class BatteryMaximumCapacityPreferenceController extends BasePreferenceController { | ||
|
||
public BatteryMaximumCapacityPreferenceController(Context context, String preferenceKey) { | ||
super(context, preferenceKey); | ||
} | ||
|
||
@Override | ||
public int getAvailabilityStatus() { | ||
return AVAILABLE; | ||
} | ||
|
||
@Override | ||
public CharSequence getSummary() { | ||
Intent batteryIntent = BatteryUtils.getBatteryIntent(mContext); | ||
final int maxCapacityUah = | ||
batteryIntent.getIntExtra(BatteryManager.EXTRA_MAXIMUM_CAPACITY, -1); | ||
final int designCapacityUah = | ||
batteryIntent.getIntExtra(BatteryManager.EXTRA_DESIGN_CAPACITY, -1); | ||
|
||
if (maxCapacityUah != -1 && designCapacityUah != -1) { | ||
int maxCapacity = maxCapacityUah / 1_000; | ||
int designCapacity = designCapacityUah / 1_000; | ||
int percentage = (maxCapacity * 100) / designCapacity; | ||
|
||
return mContext.getString( | ||
R.string.battery_maximum_capacity_summary, maxCapacity, percentage); | ||
} | ||
|
||
return mContext.getString(R.string.battery_maximum_capacity_not_available); | ||
} | ||
} |
50 changes: 50 additions & 0 deletions
50
src/com/android/settings/deviceinfo/batteryinfo/BatteryTechnologyPreferenceController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* | ||
* Copyright (C) 2024 Paranoid Android | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.android.settings.deviceinfo.batteryinfo; | ||
|
||
import android.content.Context; | ||
import android.content.Intent; | ||
import android.os.BatteryManager; | ||
|
||
import com.android.settings.R; | ||
import com.android.settings.core.BasePreferenceController; | ||
import com.android.settingslib.fuelgauge.BatteryUtils; | ||
|
||
/** | ||
* A controller that manages the information about battery technology. | ||
*/ | ||
public class BatteryTechnologyPreferenceController extends BasePreferenceController { | ||
|
||
public BatteryTechnologyPreferenceController(Context context, String preferenceKey) { | ||
super(context, preferenceKey); | ||
} | ||
|
||
@Override | ||
public int getAvailabilityStatus() { | ||
return AVAILABLE; | ||
} | ||
|
||
@Override | ||
public CharSequence getSummary() { | ||
final Intent batteryIntent = BatteryUtils.getBatteryIntent(mContext); | ||
final String technology = batteryIntent.getStringExtra(BatteryManager.EXTRA_TECHNOLOGY); | ||
|
||
return technology != null | ||
? technology | ||
: mContext.getText(R.string.battery_technology_not_available); | ||
} | ||
} |
Oops, something went wrong.