Open top menu


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);



0 comments