Получить значение переключателя в диалоговом окне оповещения - PullRequest
0 голосов
/ 24 января 2019

Я создал пользовательский алерты с диалоговой группой, радиокнопками и текстом редактирования.

Цель состоит в том, чтобы попытаться получить значение текста из выбранной кнопки и текста редактирования. На данный момент я могу получить только значение, введенное в тексте редактирования.

Я видел следующую ссылку и пытался настроить код для адаптации, но кажется, что код все еще не работает.

Android получает значение из выбранной кнопки

http://www.mkyong.com/android/android-radio-buttons-example/

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">

<RadioGroup
    android:id="@+id/radioPersonGroup"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <RadioButton
        android:id="@+id/gButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="16dp"
        android:layout_marginLeft="16dp"
        android:layout_weight="1"
        android:text="G" />
    <RadioButton
        android:id="@+id/kButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="16dp"
        android:layout_marginLeft="16dp"
        android:layout_weight="1"
        android:text="K" />

</RadioGroup>

<EditText
    android:id="@+id/editText2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="16dp"
    android:layout_marginLeft="16dp"
    android:layout_weight="1"
    android:ems="10"
    android:hint="$10.00"
    android:inputType="numberDecimal" />
</LinearLayout>

Java-файл

private RadioButton radioSelectedButton;
...

FloatingActionButton fab = findViewById(R.id.fab);
final RadioGroup group = findViewById(R.id.radioPersonGroup);
fab.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View view) {
        final AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
        final View dialogView = getLayoutInflater().inflate(R.layout.custom_dialog, null);
        builder.setTitle("Who Paid")
            .setView(dialogView)
            .setCancelable(false)
            .setPositiveButton("Ok", new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int id) {

                    int selectedId = group.getCheckedRadioButtonId();
                    radioSelectedButton = (RadioButton) findViewById(selectedId);
                    Toast.makeText(MainActivity.this,
            radioSelectedButton.getText(), Toast.LENGTH_SHORT).show();

                            EditText input = dialogView.findViewById(R.id.editText2);
                            Toast.makeText(MainActivity.this,input.getText().toString(), Toast.LENGTH_SHORT).show();
                        }
                    })
                    .setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
                        @Override
                        public void onClick(DialogInterface dialogInterface, int i) {
                            dialogInterface.cancel();
                        }
                    });

            AlertDialog alert = builder.create();
            alert.show();
        }
    });

Когда я нажимаю любую из кнопок, а затем кнопку «ОК», чтобы отправить диалоговое окно, возникает следующее исключение.

java.lang.NullPointerException: попытка вызвать виртуальный метод int android.widget.RadioGroup.getCheckedRadioButtonId () для ссылки на пустой объект

enter image description here

1 Ответ

0 голосов
/ 24 января 2019

Вы получаете NullPointerException в этой строке

int selectedId = group.getCheckedRadioButtonId();

, потому что вы пытались "найти" RadioGroup в неправильном View, когда писали

final RadioGroup group = findViewById(R.id.radioPersonGroup);

RadioGroup является частью Dialog, поэтому вам нужно искать его в View дереве dialogView :

// inside onClick()
final View dialogView = getLayoutInflater().inflate(R.layout.custom_dialog, null);
final RadioGroup group = dialogView.findViewById(R.id.radioPersonGroup);

Аналогично, вам нужно"find" selectedRadioButton в ViewGroup, который его содержит.например,

radioSelectedButton = (RadioButton) dialogView.findViewById(selectedId);

или

radioSelectedButton = (RadioButton) group.findViewById(selectedId);
...