美文网首页
改Android5.0 6.0以上尤其Nexus手机google

改Android5.0 6.0以上尤其Nexus手机google

作者: 冯员外_SundarFung | 来源:发表于2017-03-25 22:29 被阅读0次

要更改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

相关文章

网友评论

      本文标题:改Android5.0 6.0以上尤其Nexus手机google

      本文链接:https://www.haomeiwen.com/subject/nyhhottx.html