gpt4 book ai didi

android - 无法从警报对话框中的 EditText View 中获取数据

转载 作者:行者123 更新时间:2023-12-04 07:47:47 25 4
gpt4 key购买 nike

我创建了一个 alertDialog,它基本上包含两个 editTexts 来输入数据(组件 Id,组件名称)。当用户点击警报对话框中的 yes 按钮时,新组件被添加到数据库中(截至目前我还没有添加任何单击对话框中的"is"和“否”按钮的监听器)但由于某种原因,我无法从编辑文本中获取数据。我是 android 应用程序开发的新手,请帮助我..... 提前致谢:)
注意: 1. 我正在使用 viewModel.flag 以便 alertDialog 在旋转时保持持久性。

  • onCancel() 方法只是取消 alertDialog(我打算用它来更新某些参数)。

  • 这是创建警报对话框的 kotlin 代码。
    fun onAddComponent()
    {
    val builder = AlertDialog.Builder(requireActivity())

    builder?.setTitle("New Component Info")
    val inflater = requireActivity().layoutInflater

    builder?.setView(inflater.inflate(R.layout.new_comp, null))

    builder?.setPositiveButton(R.string.Okay_button){ dialogInterface, which->
    viewModel.flag = false
    val editText : EditText? = compAlert?.findViewById(R.id.new_Component)
    println(editText.toString())
    }
    builder?.setNegativeButton(R.string.NO){ dialogInterface, which->
    viewModel.flag = false
    }



    compAlert= builder?.create()
    compAlert?.setOnCancelListener{OnCancel()}
    viewModel.flag = true
    compAlert?.show()

    }
    这是我在 onAddComponent() 中膨胀的 xml 布局
    <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="match_parent">


    <EditText
    android:id="@+id/new_Component"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="20dp"
    android:ems="10"
    android:hint="comp Id"
    android:inputType="textPersonName"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

    <EditText
    android:id="@+id/new_component_name"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="16dp"
    android:ems="10"
    android:hint="comp name"
    android:inputType="textPersonName"
    app:layout_constraintEnd_toEndOf="@+id/new_Component"
    app:layout_constraintStart_toStartOf="@+id/new_Component"
    app:layout_constraintTop_toBottomOf="@+id/new_Component" />
    </androidx.constraintlayout.widget.ConstraintLayout>

    最佳答案

    要获取 EditText 中的文本,您需要执行 editText.getText().toString()不是 editText.toString()你在你的代码中。
    在您的代码中,editText.toString()将返回 editText 对象的字符串表示形式。参见 String 的文档 toString()方法 here .

    关于android - 无法从警报对话框中的 EditText View 中获取数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67136281/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com