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