我完全不知道为什么我的布局没有得到解决。他们在那里,拼写正确,并且R.java存在并且没有引发明显的错误。
import android.R;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageButton;
public class myApp extends Activity {
ImageButton b;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
b = (ImageButton)findViewById(R.id.oraclebutton);
b.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
Intent myIntent = new Intent(myApp.this, TestIntro.class);
myApp.this.startActivity(myIntent);
}
});
}
}
答案 0 :(得分:4)
尝试删除你对android.R的引用(只需删除行“import android.R;”)
可能会尝试在那里搜索您的资源文件。