Android SystemUI状态栏添加图标

增加状态图标

:1将图片放在 \frameworks\base\packages\SystemUI\res\drawable-hdpi

:2:\frameworks\base\core\res\res\values    config.xml

  添加eyeball

3:\frameworks\base\packages\SystemUI\src\com\android\systemui\statusbar\phone   PhoneStatusBarPolicy.java   函数PhoneStatusBarPolicy里面添加

///eye

mService.setIcon("eyeball", R.drawable.stat_sys_eyeball, 0,null);

mService.setIconVisibility("eyeball", true);

你可能感兴趣的:(Android,MTK开发笔记集)