setting android button invisible but still having an onClick Listener attached

后端 未结 10 1615
情深已故
情深已故 2021-02-06 06:39

So currently I\'m putting an Easter egg inside my app and I want the Button to be invisible, but when clicked(Rick roll). So far I can make it work when I say:

10条回答
  •  旧时难觅i
    2021-02-06 06:55

    You can also disable the button (It will not be clickable).

    In java code:

    btn.setClickable(false);
    

    In .xml layout:

    android:clickable="false"
    

提交回复
热议问题