我爲一個活動編寫簡單的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();
}
}
,你應該修改的問題,並把代碼與問題 – Lucifer