Android get full width for custom Dialog

后端 未结 16 634
慢半拍i
慢半拍i 2020-12-02 15:19

in my application my created custom dialog dont have full height and i can not change and customize that.for example see this screen shot:

16条回答
  •  無奈伤痛
    2020-12-02 15:51

    Using com.google.android.material.dialog.MaterialAlertDialogBuilder makes everything fun. Here my code

    MaterialAlertDialogBuilder(requireContext()).apply {
            setView(layoutInflater.inflate(R.layout.filter_view, null))
            show()
        }
    

    And Result

提交回复
热议问题