我像这样从广播接收器启动服务
Intent service = new Intent(context, MyService.class);
context.startService(service);
String s = "Hello World";
MyService.addString(s);
addString 是一个静态函数,它将字符串添加到 ListView。现在我有一个问题,即在 MyService onCreate() 运行时调用此函数并且未初始化 ListView。我该怎么做才能等到 onCreate 方法完成?