我正在检查我的EditText中是否有文本,我正在使用此代码来实现:
if (mSwitcher.getText().toString().trim().length() == 4) {
final Button button2 = (Button) findViewById(R.id.button2);
final Animation buttonz = new AlphaAnimation(0.0f, 1.0f);
buttonz.setDuration(3000);
button2.startAnimation(buttonz);
} else {
}
它没有给出任何错误,但是当我打开活动时它会显示但是我不希望我希望它在mSwitcher(这是一个EditText)中有文本时发生。
我希望有人可以帮助我。