Eclipse android ID 无法解析或不是字段

Eclipse android ID cannot be resolved or is not a field

我有这个代码:

        public void run() {
            if (Build.VERSION.SDK_INT < Build.VERSION_CODES.KITKAT) {
                // This action will have the side-effect of blurring the currently focused element
                inAppWebView.loadUrl("javascript:" + finalScriptToInject);
            }

但是id KITKAT报错:KITKAT无法解析或不是字段

Build.VERSION_CODES.KITKAT

如文档所示:2013 年 10 月:Android 4.4,奇巧,另一种美味。

表示在API级别19.

中添加的KITKAT常量

因此将当前项目目标版本更改为 API 级别 19(Android 4.4)