我已经编写了Service
这样的程序:
public int onStartCommand(Intent intent, int flags, int startId) {
loadVariables();
webview = new WebView(this);
webview.loadUrl(url);
makeNotification = notificationMaker();
result = webview.findAll(part1) > 0;
if (result == true){
notification();
}
return super.onStartCommand(intent, flags, startId);
}
我想启动它并检查是否找到了 String part1webview
并发出通知,但它什么也没做。
part1 和 url 已正确加载,并且通知也有效(我通过在 toast 中打印它们来检查它),所以webview
.
是否需要在 XML 文件中显示它,如果是,我认为它不适用于服务,对吗?