mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-04 06:20:26 +00:00
Fixed task icon color
This commit is contained in:
parent
766c3df69b
commit
2b0dcffc2a
1 changed files with 12 additions and 10 deletions
|
@ -339,16 +339,6 @@ abstract class ActivityBase extends AppCompatActivity implements SharedPreferenc
|
||||||
prefs.registerOnSharedPreferenceChangeListener(this);
|
prefs.registerOnSharedPreferenceChangeListener(this);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
Drawable d = getDrawable(R.drawable.baseline_mail_24);
|
|
||||||
Bitmap bm = Bitmap.createBitmap(
|
|
||||||
d.getIntrinsicWidth(),
|
|
||||||
d.getIntrinsicHeight(),
|
|
||||||
Bitmap.Config.ARGB_8888);
|
|
||||||
Canvas canvas = new Canvas(bm);
|
|
||||||
d.setBounds(0, 0, canvas.getWidth(), canvas.getHeight());
|
|
||||||
d.setTint(Color.WHITE);
|
|
||||||
d.draw(canvas);
|
|
||||||
|
|
||||||
boolean task_description = prefs.getBoolean("task_description", true);
|
boolean task_description = prefs.getBoolean("task_description", true);
|
||||||
int colorPrimary = (task_description
|
int colorPrimary = (task_description
|
||||||
? Helper.resolveColor(this, androidx.appcompat.R.attr.colorPrimaryDark)
|
? Helper.resolveColor(this, androidx.appcompat.R.attr.colorPrimaryDark)
|
||||||
|
@ -358,6 +348,18 @@ abstract class ActivityBase extends AppCompatActivity implements SharedPreferenc
|
||||||
colorPrimary = ColorUtils.setAlphaComponent(colorPrimary, 255);
|
colorPrimary = ColorUtils.setAlphaComponent(colorPrimary, 255);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
double lum = ColorUtils.calculateLuminance(colorPrimary);
|
||||||
|
|
||||||
|
Drawable d = getDrawable(R.drawable.baseline_mail_24);
|
||||||
|
Bitmap bm = Bitmap.createBitmap(
|
||||||
|
d.getIntrinsicWidth(),
|
||||||
|
d.getIntrinsicHeight(),
|
||||||
|
Bitmap.Config.ARGB_8888);
|
||||||
|
Canvas canvas = new Canvas(bm);
|
||||||
|
d.setBounds(0, 0, canvas.getWidth(), canvas.getHeight());
|
||||||
|
d.setTint(lum > LUMINANCE_THRESHOLD ? Color.BLACK : Color.WHITE);
|
||||||
|
d.draw(canvas);
|
||||||
|
|
||||||
ActivityManager.TaskDescription td = new ActivityManager.TaskDescription(
|
ActivityManager.TaskDescription td = new ActivityManager.TaskDescription(
|
||||||
null, bm, colorPrimary);
|
null, bm, colorPrimary);
|
||||||
setTaskDescription(td);
|
setTaskDescription(td);
|
||||||
|
|
Loading…
Reference in a new issue