you can very easily disable and enable android button.try this
Button btn=(Button)findViewById(R.id.btn);
// to enable
btn.setEnabled(true);
Button btnsave=(Button)findViewById(R.id.save);
// to disable
btn.setEnabled(false);
© 2015 Android beginner point is designed by Sarvesh Kaushik
0 comments