未知变量或字段imageURL

时间:2017-01-22 09:26:04

标签: java android android-webview android-contextmenu

我正在使用上下文菜单在Webview中查找图像... 这是我在网页浏览中通过上下文菜单保存图像的代码 -

foreach(var v in strArr)
{
     intCol.add(Convert.ToInt(v));
}

但我收到错误未知变量或字段“imageURL”,如何解决此问题?

1 个答案:

答案 0 :(得分:1)

如果这是您收到的确切错误消息,那么您的拼写错误消息是'某处。在您的声明中,变量是' camelCase'

ENV.locationType

String  imageUrl = ...

还没有看到错误,但错误发生在哪一行?

编辑:

在类的开头声明变量:(例如)

String  imageURL = ...

然后删除"字符串"来自您当前的声明(在onCreateContextMenu中)所以它看起来像:

String imageUrl = "";