mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-31 20:25:38 +00:00
Added color workaround
This commit is contained in:
parent
b9f3391430
commit
a48b21edfb
1 changed files with 8 additions and 3 deletions
|
@ -673,9 +673,13 @@ public class HtmlHelper {
|
|||
try {
|
||||
if (TextUtils.isEmpty(c))
|
||||
return null;
|
||||
else if (c.startsWith("#"))
|
||||
color = Integer.decode(c) | 0xFF000000;
|
||||
else if (c.startsWith("rgb") || c.startsWith("hsl")) {
|
||||
else if (c.startsWith("#")) {
|
||||
String code = c.substring(1);
|
||||
if (x11ColorMap.containsKey(code)) // workaround
|
||||
color = x11ColorMap.get(code) | 0xFF000000;
|
||||
else
|
||||
color = Integer.decode(c) | 0xFF000000;
|
||||
} else if (c.startsWith("rgb") || c.startsWith("hsl")) {
|
||||
int s = c.indexOf("(");
|
||||
int e = c.indexOf(")");
|
||||
if (s > 0 && e > s) {
|
||||
|
@ -706,6 +710,7 @@ public class HtmlHelper {
|
|||
try {
|
||||
color = Color.parseColor(c);
|
||||
} catch (IllegalArgumentException ex) {
|
||||
// Workaround
|
||||
color = Integer.decode("#" + c) | 0xFF000000;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue