ParseInt not parseColor

Change-Id: Id46d74e0a2560d2818af987124294863eb72638f
diff --git a/src/com/android/mail/providers/Folder.java b/src/com/android/mail/providers/Folder.java
index 605df3a..03a0253 100644
--- a/src/com/android/mail/providers/Folder.java
+++ b/src/com/android/mail/providers/Folder.java
@@ -440,7 +440,7 @@
     // swatch (see bug 2431925).
     public static void setFolderBlockColor(Folder folder, View colorBlock) {
         final boolean showBg = !TextUtils.isEmpty(folder.bgColor);
-        final int backgroundColor = showBg ? Color.parseColor(folder.bgColor) : 0;
+        final int backgroundColor = showBg ? Integer.parseInt(folder.bgColor) : 0;
         if (folder.iconResId >= 0) {
             colorBlock.setBackgroundResource((int)folder.iconResId);
         } else if (!showBg) {