R.layout.xxx cannot be resolved or is not a field问题解决办法

时间:2021-03-09 20:52:48

我写了collect_fragment.xml文件,然后在view  = inflater.inflate(R.layout.collect_fragment, container, false);语句使用时候出现collect_fragment cannot be resolved or is not a field错误,提示这个文件无法找到,但是在/gen 中的R.java却可以发现它的地址。

问题原因是eclipse工程会自动导入import android.R;

        使得这导致工程无法索引到自己工程的资源。

解决办法:

需要把import android.R;这句话删去,删去后可能问题还没解决,出现R cannot be resolved to a variable,所以还需要导入gen文件下的xxx.xxx.xxx.R。

                                            R.layout.xxx cannot be resolved or is not a field问题解决办法