A TaskDescription's primary color should be opaque Android 6.0

↘锁芯ラ 提交于 2019-12-06 08:14:13

The reason is that TaskDescription("AppName", bm ,R.color.colorPrimaryDark) needs colour value as parameter and you're using resource id. It is not the same, you have to get your colour via method context.getResources().getColor(R.color.colorPrimaryDark).

Change :

ActivityManager.TaskDescription taskDescription = new ActivityManager.TaskDescription("AppName", bm ,R.color.colorPrimaryDark);

to

ActivityManager.TaskDescription taskDescription = new ActivityManager.TaskDescription("AppName", bm , ContextCompat.getColor(context, R.color.colorPrimaryDark));
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!