MaterialAlertDialogBuilder 崩溃并显示错误:使用自定义视图时,指定的子级已经有父级
Posted
技术标签:
【中文标题】MaterialAlertDialogBuilder 崩溃并显示错误:使用自定义视图时,指定的子级已经有父级【英文标题】:MaterialAlertDialogBuilder crashes and shows error: The specified child already has a parent, when using custom view 【发布时间】:2022-01-11 03:03:16 【问题描述】:当使用 MaterialAlertDialog 的自定义布局时,它会崩溃并给我这个错误:
java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.
at com.example.applux.SettingsFragment.onViewCreated$lambda-3(SettingsFragment.kt:64) // line 64
设置片段:
override fun onViewCreated(view: View, savedInstanceState: Bundle?)
super.onViewCreated(view, savedInstanceState)
binding = FragmentSettingsBinding.bind(view)
binding.settingsClickUsername.setOnClickListener
val valueBinding = EditValuesBinding.inflate(layoutInflater)
MaterialAlertDialogBuilder(requireContext())
.setTitle("Edit your username")
.setView(valueBinding.editValue)
.setPositiveButton("Save") dialog, p ->
.setNegativeButton("Cancel") dialog, p ->
.show() // this is the line 64
edit_values.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"
android:layout_
android:layout_>
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/edit_value"
android:layout_
android:layout_
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
此错误的任何解决方案,以及为什么会发生?
【问题讨论】:
setView(valueBinding.editValue)
- 改为setView(valueBinding.root)
。正如您现在所拥有的那样,您是在告诉构建器仅将TextInputEditText
添加到Dialog
的内容中,但TextInputEditText
已经附加到ConstraintLayout
,这确实是您要传递的内容而是在那里。
@MikeM。非常感谢,现在可以使用了
【参考方案1】:
我找到了解决方案,我必须将 valueBinding.root 传递给 setView() 而不是 valueBinding.editValue,因为 TextInputEditText 已附加到 ConstraintLayout,感谢 Mike M 的帮助。
【讨论】:
以上是关于MaterialAlertDialogBuilder 崩溃并显示错误:使用自定义视图时,指定的子级已经有父级的主要内容,如果未能解决你的问题,请参考以下文章