Exemplo n.º 1
0
  public void onRadioButtonClicked(View view) {
    // Is the button now checked?
    boolean checked = ((RadioButton) view).isChecked();

    // Check which radio button was clicked
    switch (view.getId()) {
      case R.id.CynicradioButton:
        if (checked) dialogManager.setAttitudeCynic();
        break;
      case R.id.DistantradioButton:
        if (checked) dialogManager.setAttitudeDistant();
        break;
    }
  }