From b5f89235f519d7c20e05e66156ffe4ceb4fa9491 Mon Sep 17 00:00:00 2001 From: Dave Kover Date: Wed, 13 Apr 2016 15:37:33 -0700 Subject: Update controls preview to properly render themed assets. The style preview card does not use assets which are overridden by most themes. This results in an inaccurate preview of the included controls, ie checkbox and radio buttons. Additionally, the font size is cut off on the button in the preview. Increase button height and decrease font size to compensate. Ticket: CYNGNOS-874 Change-Id: I286f801afa7b6366ecf50395075240f33bc3d0ac --- .../cyanogenmod/themes/provider/util/LayoutRenderUtils.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src') diff --git a/src/org/cyanogenmod/themes/provider/util/LayoutRenderUtils.java b/src/org/cyanogenmod/themes/provider/util/LayoutRenderUtils.java index c174d8e..5ccd196 100644 --- a/src/org/cyanogenmod/themes/provider/util/LayoutRenderUtils.java +++ b/src/org/cyanogenmod/themes/provider/util/LayoutRenderUtils.java @@ -18,6 +18,7 @@ package org.cyanogenmod.themes.provider.util; import android.graphics.Bitmap; import android.graphics.Canvas; import android.view.View; +import android.view.ViewGroup; import android.widget.FrameLayout; public class LayoutRenderUtils { @@ -35,6 +36,17 @@ public class LayoutRenderUtils { // Assign a size and position to the view and all of its descendants view.layout(0, 0, view.getMeasuredWidth(), view.getMeasuredHeight()); + // Make sure views with stateful drawables are in their correct state + if (view instanceof ViewGroup) { + final ViewGroup vg = (ViewGroup) view; + final int N = vg.getChildCount(); + for (int i = 0; i < N; i++) { + vg.getChildAt(i).jumpDrawablesToCurrentState(); + } + } else { + view.jumpDrawablesToCurrentState(); + } + // Create the bitmap Bitmap bitmap = Bitmap.createBitmap(view.getMeasuredWidth(), view.getMeasuredHeight(), -- cgit v1.2.3