对话框全屏布局问题

问题描述 投票:0回答:1

全屏对话框中的布局未正确呈现。

这是我的对话代码:

val mDialogView = LayoutInflater.from(this).inflate(R.layout.alertdialog_info,null)

    val mBuilder = AlertDialog.Builder(this, R.style.FullScreenDialog)
            .setView(mDialogView)

    val mAlertDialog = mBuilder.show()

    mDialogView.titleTv.text = getString(R.string.title)
    mDialogView.descriptionTv.text = getString(R.string.description)

    mAlertDialog.show()

在style.xml中,这是我的FullScreenDialog:

<style name="FullScreenDialog" parent="android:Theme.Dialog">
    <item name="android:layout_width">match_parent</item>
    <item name="android:layout_height">match_parent</item>
    <item name="android:windowBackground">@color/md_white_1000</item>
    <item name="android:windowNoTitle">true</item>
    <item name="android:windowFullscreen">true</item>
    <item name="android:windowIsFloating">false</item>
</style>

这是我的布局:

 <?xml version="1.0" encoding="utf-8"?>
    <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        xmlns:tools="http://schemas.android.com/tools"
        android:paddingTop="16dp"
        android:gravity="bottom"
        android:layout_marginStart="16dp"
        android:layout_marginEnd="16dp"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:background="@color/md_white_1000">

                <ImageView
                    android:id="@+id/iconIv"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginBottom="50dp"
                    android:src="@drawable/ic_success"
                    app:layout_constraintEnd_toEndOf="parent"
                    app:layout_constraintStart_toStartOf="parent"
                    app:layout_constraintBottom_toTopOf="@id/titleTv" />

                <TextView
                    android:id="@+id/titleTv"
                    style="@style/FontLocalizedBold"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    tools:text="@string/payment_success"
                    android:textColor="@color/colorTextPrimary"
                    android:textSize="24sp"
                    android:layout_marginStart="24dp"
                    android:gravity="center"
                    android:layout_marginEnd="24dp"
                    android:maxLines="2"
                    android:layout_marginTop="16dp"
                    app:layout_constraintEnd_toEndOf="parent"
                    app:layout_constraintStart_toStartOf="parent"
                    app:layout_constraintTop_toTopOf="parent"
                    app:layout_constraintBottom_toBottomOf="parent" />


                <TextView
                    android:id="@+id/descriptionTv"
                    style="@style/FontLocalizedMedium"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginStart="24dp"
                    android:layout_marginTop="48dp"
                    android:layout_marginEnd="24dp"
                    android:gravity="center"
                    tools:text="@string/payment_success_description"
                    android:textSize="17sp"
                    app:layout_constraintEnd_toEndOf="parent"
                    app:layout_constraintStart_toStartOf="parent"
                    app:layout_constraintTop_toBottomOf="@id/titleTv" />

                <TextView
                    android:id="@+id/okTv"
                    style="@style/ButtonTextView"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_marginStart="16dp"
                    android:layout_marginEnd="16dp"
                    android:paddingBottom="16dp"
                    android:background="@drawable/save_button_active"
                    android:text="@string/done"
                    app:layout_constraintBottom_toBottomOf="parent" />

    </androidx.constraintlayout.widget.ConstraintLayout>

我尝试使用LinearLayout代替ConstraintLayout,但结果相同。

我附带了有关我的xml文件的外观以及在模拟器上呈现的外观的图片,请忽略其他字符串值。

仿真器:emulator

xml:xml

任何想法会导致渲染差异吗?

android kotlin layout dialog android-constraintlayout
1个回答
0
投票

听起来您需要在xml查看器中更新预览样式。我突出显示了要在当前版本的AndroidStudio中使用的下拉框。

Click dropdown box to change preview style

© www.soinside.com 2019 - 2024. All rights reserved.