如何让eclipse显示错误行?

时间:2013-09-06 11:08:18

标签: android eclipse

我正在使用eclipse indigo

我的日食显示有一些错误,但它没有显示红线,也没有显示错误是什么,它只显示红十字图标

我的eclipse屏幕截图: eclipse screen shot

2 个答案:

答案 0 :(得分:2)

要显示错误行,请转到Preferences -> General -> Editors -> Text Editors -> Annotations -> Errors并检查Text asNative Problem Underline

答案 1 :(得分:0)

如果你鼠标悬停在小x上,它应该告诉你问题,第一个错误是你需要通过id添加一个强制转换到查找视图

ImageView imageView = (ImageView) findViewById(R.id.imageView1);

我并不是100%肯定第二个,但它认为它应该是这个或类似的东西。

imageView.setImageURI(URI.parse(getIntent().getExtras().get(Intent.EXTRA_STREAM)));

或者可能是因为图像视图的设置错误。