JAVA - RadioButton检查

时间:2016-03-29 16:24:19

标签: java android radio-button

我的应用程序有一个问题。我有两个RadioButton

<RadioGroup
    android:layout_width="148dp"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal" >
<!-- android:buttonTint="@color/BouttonsRadio" --> 

    <RadioButton
        android:layout_width="137dp"
        android:layout_height="wrap_content"
        android:text="@string/Boutton_Bluetooth"
        android:id="@+id/BouttonRADIO_Bluetooth"
        android:layout_gravity="center_horizontal"
        android:textSize="20dp"
        android:textStyle="bold" />

    <RadioButton
        android:layout_width="137dp"
        android:layout_height="wrap_content"
        android:text="@string/Boutton_RS232"
        android:id="@+id/BouttonRADIO_RS232"
        android:layout_gravity="center_horizontal"
        android:textSize="20dp"
        android:textStyle="bold" />
</RadioGroup>

而且,我有一个AlertDialog,有三个按钮:

    public void fenetre_connexiondeconnexion() {

    final AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(
            context);


    final View view2 = View.inflate(MainActivity.this, R.layout.fenetre_connexion_B_R, null);


    // Titre de la fenêtre
    alertDialogBuilder.setTitle("Paramètres connexion");
    alertDialogBuilder.setIcon(R.drawable.logo_connecterdeconnecter);

    // set dialog message
    alertDialogBuilder
            .setMessage("Veuillez choisir le type de connexion :")
            .setCancelable(false);

    alertDialogBuilder.setView(view2);


    alertDialogBuilder.setPositiveButton("CONNEXION", new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int id) {
            // if this button is clicked, close
            // current activity
            connexion_rs232();
        }
    });
    alertDialogBuilder.setNegativeButton("ANNULER", new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int id) {
            // if this button is clicked, just close
            // the dialog box and do nothing
            dialog.cancel();
        }
    })
            .setNeutralButton("PARAMETRES", new DialogInterface.OnClickListener() {
                @Override
                public void onClick(DialogInterface dialog, int id) {
                    fenetre_parametres_rs232(view2);
                }
            });




    // Création de la fenêtre
    AlertDialog alertDialog = alertDialogBuilder.create();


    // Affichage de la fenêtre
    alertDialog.show();


}

最后,我想要检查选中的单选按钮,并且只有当它是蓝牙时,才能禁用中立Button。 为此,我发现了这个,但没有奏效:

Button button = alertDialog.getButton(AlertDialog.BUTTON_NEUTRAL);

if(BouttonRadio_B.isChecked()) {
    button.setEnabled(false);
}
if(BouttonRadio_R.isChecked()) {
    button.setEnabled(true);
}

2 个答案:

答案 0 :(得分:1)

必须工作

    Button button = alertDialog.getButton(AlertDialog.BUTTON_NEUTRAL);
    if(BouttonRadio_B.isChecked()) {
        button.setEnabled(false);
    }
    if(BouttonRadio_R.isChecked()) {
        button.setEnabled(true);
    }

如果在显示对话后执行此代码

alertDialog.show();

答案 1 :(得分:1)

您必须实现侦听器以侦听RadioButton的检查更改侦听器。有关详细信息,请参阅this documentation。是的,您可以使用button.setEnabled(isChecked)

BouttonRadio_R.setOnCheckedChangeListener(new
    CompoundButton.OnCheckedChangeListener() {
     @Override
     public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) 
    {
       if (isChecked) {
            button.setEnabled(true);
        }
       else{
            button.setEnabled(false);
        }
}

这应该适合你。