how to add button click event in android studio

前端 未结 14 1320
面向向阳花
面向向阳花 2020-12-24 11:04

So I have done some research, and after defining you button as an object by the code

private Button buttonname;
buttonname = (Button) findViewById(R.id.butto         


        
14条回答
  •  时光取名叫无心
    2020-12-24 11:26

    Different ways to handle button event

    Button btn1 = (Button)findViewById(R.id.button1);
    btn1.setOnClickListener(new View.OnClickListener() {            
            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
                Toast.makeText(context, "Button 1", 
         Toast.LENGTH_LONG).show();
            }
        });
    

    [Check this article for more details about button event handlers]

提交回复
热议问题