
How I can solve this error help?

How I can solve this error help?
 
    
     
    
    seems like btnDish is null. Are you assigning it a value somewhere in code above?
You should be doing something like
btnDish = findViewById(R.id.btnDish)
btnDish.setOnClickListner { 
   //do stuff here
}
 
    
      Button button = (Button) findViewById(R.id.button_send);
  button.setOnClickListener(new View.OnClickListener() {
  
  public void onClick(View v) {
      Intent intent = new Intent(FirstActivity.this,SecondActivity.class);
      startActivity(intent);
     }
  });
 
    
    