Button Is Not Clickable Or Focusable March 09, 2024 Post a Comment I have created a button in my screen's XML like this: Solution 1: you should add a listener to listen the clic event on your button like this : Button btn = (Button)findViewById(R.id.btn1); //add the listener to your Button btn.addOnClickListener( new OnClickListener(){ @Override public void onClick(View v ){ Toast.makeText(YourActivity.this, "the button is clicked ...", 3000).show(); } }); Copy Share Post a Comment for "Button Is Not Clickable Or Focusable"
Post a Comment for "Button Is Not Clickable Or Focusable"