DEV Community

Cover image for How to Disable Button in Android Studio
Anoop Patel
Anoop Patel

Posted on

2

How to Disable Button in Android Studio

*First Way: *

button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                view.setEnabled(false);
            }
        });
Enter fullscreen mode Exit fullscreen mode

Second way: Without setOnClickListner

 public void disable(View v){
        v.setEnabled(false);
    }
Enter fullscreen mode Exit fullscreen mode

*XMl code file: *

 <Button
        android:id="@+id/button"
        android:onClick="disable"
        android:layout_margin="8dp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="button" />
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more