Custom dialog on Android: How can I center its title?

前端 未结 13 2114
后悔当初
后悔当初 2020-11-27 12:43

I\'m developing an Android application.

How can I center the title for a custom dialog that I\'m using?

13条回答
  •  醉梦人生
    2020-11-27 13:20

    In Kotlin, you can do it in 1 line

    dialog!!.window!!.attributes = dialog!!.window!!.attributes.apply { dimAmount = 0F }
    

提交回复
热议问题