How to disable a button in java | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
0

How to disable a button in java

so i need a button to be unusable once the timer runs out and until the amount is reset, how do i do this? @override public void onFinish(){ timer.setText("0:00"); txtView2.setText("you're out of time"); } im assuming i add the code in this class but i dont know what i would need to input

26th Mar 2017, 6:53 AM
David Busev
David Busev - avatar
1 ответ
+ 1
there is method in java which is buttonname.setEnabled(boolean); in that if you want to enable the button then write true in the place of boolean and if you disable the button then write false in the place of boolean
26th Mar 2017, 7:12 AM
Devraj Sikarwar
Devraj Sikarwar - avatar