源码位置:SystemServer类 startSystemUI方法,功能为通过Intent启动了SystemUIService,源码如下:
Intent intent = new Intent();
intent.setComponent(new ComponentName( pkg: "com.android.systemui"
cls: "com.android.systemui.Systemuiservice"));
intent.setComponent()方法源码如下:
由此可见,
参数pkg :组件所在包的名称,不能为空;
参数cls:pkg 中实现组件的类的名称,不能为空