My Alert dialog message doesn't come out because I cannot get the text of the button. After that the program will directly go to my EventActivity. How can settle this problem?
public void onClick(View v) {
        // TODO Auto-generated method stub
        if (v.getId() == insertButton.getId()) {
            if(colorButton.getText().toString().equals("Color")){
                colorAlert.show();
            }
        }
}
This is variable
AlertDialog colorAlert;
AlertDialog in the OnCreate()
AlertDialog.Builder CA = new AlertDialog.Builder(this);
        CA.setTitle("Alert Message!");
        CA.setMessage("Please insert the level of important for the event.");
        CA.setPositiveButton("OK", new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int which) {
                // TODO Auto-generated method stub
                colorAlert.dismiss();
                startActivity(new Intent(this, EventActivity.class));
            }
        });
        colorAlert = CA.create();
 
     
     
    