| | |
| | | //设置导航条背景颜色
|
| | | Activity activity = (Activity) context;
|
| | | activity.getWindow().setNavigationBarColor(HDLApp.getInstance().getColor(R.color.text_FF1C1C1E));
|
| | | //只能通过这种方式调用
|
| | | Intent intent = new Intent();
|
| | | intent.setPackage("com.hdl.photovoltaic");
|
| | | intent.setAction("UniappService.ACTION");
|
| | | context.bindService(intent, stringservice, Context.BIND_AUTO_CREATE);
|
| | | // //只能通过这种方式调用
|
| | | // Intent intent = new Intent();
|
| | | // intent.setPackage("com.hdl.photovoltaic");
|
| | | // intent.setAction("UniappService.ACTION");
|
| | | // context.bindService(intent, stringservice, Context.BIND_AUTO_CREATE);
|
| | |
|
| | | return splashView;
|
| | | }
|