Android Studio:无法将DialogFragment的膨胀布局传递给match_parent

时间:2019-07-02 05:32:34

标签: android-studio android-dialogfragment dialogfragment

我有一个片段,在其上面显示[弹出] DialogFragment。问题是我无法获得要充气填充DialogFragment的RelativeLayout。实际上,它总是 水平填充; 从不垂直。

[弹出] DialogFragment(RelativeLayout)将layout_widthlayout_height设置为"match_parent"

以下屏幕截图显示了单独的示例。在每种情况下,白色矩形都是(正确大小的)DialogFragment。膨胀的XML是红色和黄色部分(带有TextView)。红色和黄色来自背景可绘制对象。

enter image description here enter image description here

请注意,膨胀的RelativeLayout始终会占用整个宽度,而绝对不会占用整个高度。请注意,我移动了嵌入式TextView(用于最后两个屏幕截图)来说明两点:

(1)正是TextView的位置确定了展开式布局的高度。

(2)它的位置对宽度没有影响。

还请注意:

  • TextView的layout_alignParentStartlayout_alignParentTop均为true

  • 如果我完全删除TextView,则膨胀的布局“消失”(大概是因为我现在的“高度”为零)。

#2和#5(第二列)的屏幕截图相同-除了TextView的位置。

#3和#6(第三列)也是如此。

(TextView在屏幕快照#6的红色区域中大部分是垂直的。在这里很难看到,但这就是它的位置-黄色的右边,其底部与底部对齐。黄色区域。)

  

所以:我的问题是-当然-我想念什么/做错了什么?

代码块:

ZzzDialog.kt ([popup] DialogFragment的来源):

package com.zazzem.two.dialogs

import android.app.Dialog
import android.os.Bundle
import android.view.Gravity
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import androidx.appcompat.app.AlertDialog
import androidx.fragment.app.DialogFragment

class ZzzDialog : DialogFragment() {
    private lateinit var popup: View

    private var popupLft: Int = 0
    private var popupTop: Int = 0
    private var popupWid: Int = 0
    private var popupHgt: Int = 0

    override fun onCreateDialog(savedInstanceState: Bundle?): Dialog {
        val inflater = LayoutInflater.from(context)
        popup = inflater.inflate(com.zazzem.two.R.layout.dialog_zzz, null)

        return activity!!.let {
            val builder = AlertDialog.Builder(it)
            builder.setView(popup)
            builder.create()
        }
    }

    override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? {
        val win = dialog!!.window!!
        win.setGravity(Gravity.TOP or Gravity.LEFT) //top left first, so x & y below will be relative to there
        return super.onCreateView(inflater, container, savedInstanceState)
    }

    override fun onResume() {
        super.onResume()

        val win = dialog!!.window ?: return
        val params = win.attributes
        params.x = popupLft
        params.y = popupTop
        params.width = popupWid
        params.height = popupHgt
        win.attributes = params
    }

    fun setPosAndSize(lft: Int, top: Int, wid: Int, hgt: Int) {
        popupLft = lft
        popupTop = top
        popupWid = wid
        popupHgt = hgt
    }
}

[TEMP] ClickListener (调用“ setup”并显示[popup]的位置):

        btnDevTemp.setOnClickListener {
            fun doOne(l: Int, t: Int, w: Int, h: Int) {
                dialog_specs.text = "Lft:$l Top:$t Wid:$w Hgt:$h"
                val dlg = ZzzDialog()
                dlg.setPosAndSize(l, t, w, h)
                dlg.show(activity!!.supportFragmentManager, "ZzzDialog")
            }
            doOne(100,200,800,800) //pic #1
            //doOne(10,10,1200,1900) //pic #2 and #5
            //doOne(500,500,800,1200) //pic #3 and #6
            //doOne(300,300,450, 900) //pic #4
        }

[弹出] DialogFragment的XML:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/bkgr_zzz"
    android:orientation="horizontal"
    >

    <TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentStart="true"
        android:layout_alignParentTop="true"
        android:layout_marginStart="151dp"
        android:layout_marginTop="112dp"
        android:backgroundTint="@color/Pink"
        android:text="TextView"
        />
</RelativeLayout>

上述background的XML

    <?xml version="1.0" encoding="utf-8"?>
    <shape xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="rectangle"
        >
        <!-- yellow -->
        <solid android:color="#FFFF00" />
        <padding
            android:bottom="20dp"
            android:left="20dp"
            android:right="20dp"
            android:top="20dp"
            />
        <!-- red -->
        <stroke
            android:width="25dp"
            android:color="#FF0000"
            />
    </shape>    

谢谢!

1 个答案:

答案 0 :(得分:0)

尝试一下。

以编程方式获取对话框片段的高度:

int height  = getDialog().getWindow().getDecorView().getHeight();

然后,获取该父级RelativeLayout的引用,并以编程方式设置其高度。

relativeLayout.getLayoutParams().height = height;