android 为什么EditText.getText()返回null?

jogvjijk  于 2023-02-20  发布在  Android
关注(0)|答案(1)|浏览(215)

因此,当我在android studio中制作我的第一个项目时,我尝试制作一个警报框,在那里我可以从2个EditText中获取输入,并将它们作为创建RecyclerView元素的参数,但结果是**它返回null***( 即使EditText的ID被正确提及 *)

fa = findViewById(R.id.add_alarm_fab);
        fa.setOnClickListener(new View.OnClickListener(){
            @Override
            public void onClick(View view){

                AlertDialog.Builder builder = new AlertDialog.Builder(AdminActivity.this);
                builder.setTitle("Add slots");

                View customLayout = getLayoutInflater().inflate(R.layout.alert_dialog_layout,null);
                builder.setView(customLayout);

                builder.setPositiveButton("Add", new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialogInterface, int i) {
                        EditText editText1 = findViewById(R.id.edCentre);
                        EditText editText2 = findViewById(R.id.edSlots);

                        String centreName = editText1.getText().toString();

                        Integer slots = Integer.parseInt(editText2.getText().toString());
                        if (centreName!=null && slots!=null)
                            medCentreArrayList.add(new MedCentre(centreName,slots));
                        ad.notifyDataSetChanged();
                    }
                });
                builder.create().show();
            }
        });

这是我的提醒对话框的XML文件:-

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <EditText
        android:id="@+id/edSlots"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="20dp"
        android:ems="10"
        android:hint="Slots available"
        android:inputType="textPersonName"
        android:padding="20dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent" />

    <EditText
        android:id="@+id/edCentre"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="20dp"
        android:padding="20dp"
        android:ems="10"
        android:hint="Centre Name"
        android:inputType="textPersonName"
        app:layout_constraintBottom_toTopOf="@+id/edSlots"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

警报对话框布局的图像:

和警报对话框图像:

vof42yt1

vof42yt11#

看起来你需要在对话框容器中找到你的视图,类似于这样:

EditText editText1 = customLayout.findViewById(R.id.edCentre);

相关问题