Disable buttons and change the text of all buttons..

Anoop Patel - Sep 21 - - Dev Community

change button text

 public void disable(View v){
        v.setEnabled(false);
        Button button = (Button) v;
        button.setText("Disabled");
    }
Enter fullscreen mode Exit fullscreen mode
. .
Terabox Video Player