我为一个活动编写了简单的 android 代码,并通过布局文件夹中名为 second.xml 的 xml 文件提供了它的视图。我也在 mainfiest 文件中提到了这个活动。但我面临的错误是“第二个无法解决或它不是字段”在 setContentView 方法中。请给出解决方案
import android.R;
import android.app.Activity;
import android.os.Bundle;
import android.widget.ImageView;
public class Second extends Activity
{
ImageView imageView;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.second);
// Intent i=getIntent();
}
}