改Android5.0 6.0以上尤其Nexus手机google手机最近应用的颜色

要更改Recent APPs列表的颜色 两行代码搞定

You can change this via ActivityManager.TaskDescription From an Activity context, call:

ActivityManager.TaskDescription taskDescription=new ActivityManager.TaskDescription(getResources().getString(R.string.app_name),null,getResources().getColor(R.color.gray));
((Activity)this).setTaskDescription(taskDescription);

参考Android官方开发者文件

https://developer.android.com/reference/android/app/ActivityManager.TaskDescription.html

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容