android状态栏右上角增加图标的方法

目前是在rk4.1系统下进行学习,具体添加方法如下:

1、base\core\res\res\Values\config.xml 增加图标标识字符串
test_hd_status        //在mService.setIcon时要用到


2、frameworks\base\core\java\android\content\Intent.java
    增加广播表示:
    public static final String ACTION_TEST_HD_STATUS = "android.intent.action.test_hd_status";

3、frameworks\base\packages\SystemUI\src\com\android\systemui\statusbar\phone\PhoneStatusBarPolicy.java
中增加图标数组

 private static final int [] sTESTHdStatusImages={
     R.drawable.test_hd_notfound,
  R.drawable.test_hd_error,
  R.drawable.test_hd_fine,
 };

注册广播: filter.addAction(Intent.ACTION_TEST_HD_STATUS); 以及广播处理函数
private final void updateTESTHardDiskStatus(Intent intent);


test_sdcard_status
test_hdisk_status

public static final String ACTION_TEST_EXTRA_STATUS = "android.intent.action.test_extra_status";

你可能感兴趣的:(android状态栏右上角增加图标的方法)