Update Settings to use themed Context.getDrawable()
Explicit null theme is passed when using Resources.getDrawable() and no theme is available, e.g. when using getResourcesForApplication(). This fixes an issue with ic_text_dot theming and helps avoid similar issues in the future. BUG: 17648301 Change-Id: I3e97c3490b6f2a55744f567b21284f2935ae9af7
This commit is contained in:
@@ -189,7 +189,7 @@ public class BatteryEntry {
|
||||
break;
|
||||
}
|
||||
if (iconId > 0) {
|
||||
icon = context.getResources().getDrawable(iconId);
|
||||
icon = context.getDrawable(iconId);
|
||||
}
|
||||
if ((name == null || iconId == 0) && this.sipper.uidObj != null) {
|
||||
getQuickNameIconForUid(this.sipper.uidObj);
|
||||
@@ -228,7 +228,7 @@ public class BatteryEntry {
|
||||
name = context.getResources().getString(R.string.process_mediaserver_label);
|
||||
}
|
||||
iconId = R.drawable.ic_power_system;
|
||||
icon = context.getResources().getDrawable(iconId);
|
||||
icon = context.getDrawable(iconId);
|
||||
return;
|
||||
} else {
|
||||
//name = packages[0];
|
||||
|
Reference in New Issue
Block a user