我使用 android 2.3.3 我的代码:
read=(Button)findViewById(R.id.bt_read);
write=(Button)findViewById(R.id.bt_write);
text=(EditText)findViewById(R.id.editText1);
// write file
write.setOnClickListener(new OnClickListener() {
public void onClick(View arg0) {
// TODO Auto-generated method stub
Toast.makeText(getApplicationContext(), "Write", Toast.LENGTH_SHORT);
}
});
但是当我单击按钮 Toast 时不显示。谁能告诉我为什么?谢谢