summaryrefslogtreecommitdiff
path: root/src/com/android/customization/model/theme/ThemeBundle.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/customization/model/theme/ThemeBundle.java')
-rw-r--r--src/com/android/customization/model/theme/ThemeBundle.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/com/android/customization/model/theme/ThemeBundle.java b/src/com/android/customization/model/theme/ThemeBundle.java
index 4ede59ec..3a32f257 100644
--- a/src/com/android/customization/model/theme/ThemeBundle.java
+++ b/src/com/android/customization/model/theme/ThemeBundle.java
@@ -50,6 +50,7 @@ import com.android.wallpaper.R;
import com.android.wallpaper.asset.Asset;
import com.android.wallpaper.asset.BitmapCachingAsset;
import com.android.wallpaper.model.WallpaperInfo;
+import com.android.wallpaper.util.ResourceUtils;
import org.json.JSONException;
import org.json.JSONObject;
@@ -110,7 +111,8 @@ public class ThemeBundle implements CustomizationOption<ThemeBundle> {
}
if (!mPreviewInfo.icons.isEmpty()) {
Drawable icon = mPreviewInfo.icons.get(0).getConstantState().newDrawable().mutate();
- icon.setTint(res.getColor(R.color.icon_thumbnail_color, null));
+ icon.setTint(ResourceUtils.getColorAttr(
+ view.getContext(), android.R.attr.textColorSecondary));
((ImageView) view.findViewById(R.id.theme_option_icon)).setImageDrawable(
icon);
}