android 如何在Kotlin中更改AlertDialog的宽度和高度

tkclm6bt  于 2022-12-16  发布在  Android
关注(0)|答案(2)|浏览(317)

如何在Kotlin中更改警报对话框的高度和宽度。警报对话框代码如下所示:

val loginProgressDialog = AlertDialog.Builder(this)
            .setView(layoutInflater.inflate(R.layout.alert_dialog, null))
            .setCancelable(false)
            .create()

我尝试了以下操作,但没有成功

loginProgressDialog.window?.attributes?.width = 100
    loginProgressDialog.window?.attributes?.height = 100

如果你能链接到一个有解决方案的帖子,我也很乐意。

vmdwslir

vmdwslir1#

您可以使用以下命令来实现此目的

loginProgressDialog.window?.setLayout(100, 100)

您只能在使用loginProgressDialog.show()显示AlertDialog后立即使用它

vxf3dgd4

vxf3dgd42#

如果您正在为警报对话框使用自定义视图,则可以设置根布局高度和宽度以环绕内容,然后添加另一个具有固定尺寸的布局。这将使您的对话框继承与子视图相同的尺寸。

<androidx.constraintlayout.widget.ConstraintLayout 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">

    <androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="400dp"
        android:layout_height="400dp"
        android:background="@drawable/popup_bg"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="parent">
    
    </androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

相关问题