我在 Eclipse 上使用虚拟 android 设备当我写:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button but = (Button)findViewById(R.id.button1);
but.setOnClickListener(this);
}
它有效,我想要出现的内容出现在设备上,但是当我添加
EditText taille = (EditText)findViewById(R.id.taille);
在 onCreate 函数中,我收到“应用程序意外停止,请重试”,我经常收到这些消息,并且我知道它来自哪里,因为 logcat 上没有写任何内容,并且控制台没有错误。