Merge "DO NOT MERGE Turn off LAYER_TYPE_SOFTWARE on BatteryMeterView" into qt-dev

This commit is contained in:
TreeHugger Robot
2019-04-15 14:36:46 +00:00
committed by Android (Google) Code Review
2 changed files with 2 additions and 4 deletions

View File

@@ -173,6 +173,7 @@ open class ThemedBatteryDrawable(private val context: Context, frameColor: Int)
}
override fun draw(c: Canvas) {
c.saveLayer(null, null)
unifiedPath.reset()
levelPath.reset()
levelRect.set(fillRect)
@@ -243,6 +244,7 @@ open class ThemedBatteryDrawable(private val context: Context, frameColor: Int)
// And draw the plus sign on top of the fill
c.drawPath(scaledPlus, errorPaint)
}
c.restore()
}
private fun batteryColorForLevel(level: Int): Int {

View File

@@ -180,10 +180,6 @@ public class BatteryMeterView extends LinearLayout implements
setClipChildren(false);
setClipToPadding(false);
Dependency.get(ConfigurationController.class).observe(viewAttachLifecycle(this), this);
// Needed for PorderDuff.Mode.CLEAR operations to work properly, but redraws don't happen
// enough to justify a hardware layer.
setLayerType(LAYER_TYPE_SOFTWARE, null);
}
private void setupLayoutTransition() {