1. button按下状态的改变
Button bt1 = null; // 声明按钮对象
bt1 = (Button) findViewById(R.id.button1); // 获取按钮对象
bt1.setPressed(true); // 设置按下状态。
04-25 10:33