实例化DialogFragment时Android获取OutOfMemoryError

时间:2019-02-13 15:01:49

标签: android kotlin out-of-memory dialogfragment

我正在从Google阅读this的有关使用DialogFragment的信息。一切正常,直到创建自定义布局部分:当调用完成以显示具有自定义布局的DialogFragment时,我得到了OutOfMemoryError异常。

我刚刚稍微修改了本文中的代码,我的应用仅包含以下3个元素:

MainActivity.kt

class MainActivity : AppCompatActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)
        setSupportActionBar(toolbar)

        fab.setOnClickListener { view ->
            showDialog()
        }
    }


    fun showDialog() {
        // Create an instance of the dialog fragment and show it
        val dialog = FireMissilesDialogFragment()
        dialog.show(supportFragmentManager, "NoticeDialogFragment")
    }

}

FireMissilesDialogFragment.kt

class FireMissilesDialogFragment : DialogFragment() {

    override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {
        return activity?.let {
            val builder = AlertDialog.Builder(it)

            // Inflate and set the layout for the dialog
            // Pass null as the parent view because its going in the dialog layout
            builder.setView(layoutInflater.inflate(R.layout.dialog_layout, null))
                // Add action buttons
                .setPositiveButton(R.string.ok) { dialog, id ->
                    Log.d("FireMissiles", "TEST")
                }
                .setNegativeButton(R.string.cancel) { dialog, id ->
                    getDialog().cancel()
                }
            builder.create()
        } ?: throw IllegalStateException("Activity cannot be null")
    }
}

dialog_layout.xml

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

    <EditText
            android:id="@+id/username"
            android:inputType="textEmailAddress"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="16dp"
            android:layout_marginLeft="4dp"
            android:layout_marginRight="4dp"
            android:layout_marginBottom="4dp"
            android:hint="@string/ok" android:importantForAutofill="no"/>
    <EditText
            android:id="@+id/password"
            android:inputType="textPassword"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="4dp"
            android:layout_marginLeft="4dp"
            android:layout_marginRight="4dp"
            android:layout_marginBottom="16dp"
            android:fontFamily="sans-serif"
            android:hint="@string/cancel" android:importantForAutofill="no"/>
</LinearLayout>

我的代码上面只有这3个元素。我猜那里有内存泄漏,但是找不到。

有人有主意吗?


评论和解决方案的答案:

@Sam我不使用任何图像,该项目只是尝试使用DialogFragment, 因此,它基于带有fab的标准空Activity项目,我唯一没有显示的是activity_main.xml,但这是标准项目。

@Tobias,谢谢您的提示,但它没有解决问题:(

@ user8159708,谢谢!解决了问题。现在我的代码了(这是我唯一更改的内容):

class FireMissilesDialogFragment : DialogFragment() {

    lateinit var mView: View

    override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? {
        mView = inflater.inflate(R.layout.dialog_layout, container, false)

        setDialog()

        return mView
    }

    fun setDialog(){
        activity?.let {
            val builder = AlertDialog.Builder(it)

            // Inflate and set the layout for the dialog
            // Pass null as the parent view because its going in the dialog layout
            builder.setView(mView)
                // Add action buttons
                .setPositiveButton(R.string.ok) { dialog, id ->
                    Log.d("FireMissiles", "TEST")
                }
                .setNegativeButton(R.string.cancel) { dialog, id ->
                    Log.d("FireMissiles", "TEST")
                    //getDialog().cancel()
                }
            builder.create()
        } ?: throw IllegalStateException("Activity cannot be null")
    }
}

3 个答案:

答案 0 :(得分:1)

不要使用警报生成器创建对话框。

删除对onCreateDialog的覆盖。

onCreateView中增加视图:

override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? {
        return inflater.inflate(R.layout.dialog_layout, container, false)
    }

自己在布局中添加一些按钮,并在放大视图后手动设置onClickListeners。

答案 1 :(得分:0)

这听起来像是循环。

尝试删除getDialog().cancel(),而只返回null。

您不需要显式关闭Dialog

答案 2 :(得分:0)

我认为您做错了。您不需要使用AlertDialog.Builder,因为已经从DialogFragment扩展了。

您可以遵循此link

它是用Java编写的,但在Kotlin中将是相似的。