弹出窗口有问题 window

Having issue with Popup window

我正在尝试将弹出窗口 window 设置为类似于旧的 Facebook 评论部分。

圆角对话框,但我遇到了对话框 size of dialog boxshowatlocation 的问题。

当我在不同的手机上尝试此代码时:

        val display = windowManager.defaultDisplay
        val size = Point()
        display.getSize(size)
        val popupWindow = PopupWindow(customView, size.x-30, size.y-300, true)
        popupWindow.showAtLocation(linearLayout1, Gravity.CENTER, -3, 100)
        popupWindow.setAnimationStyle(R.style.PopupAnimation)

Xml 文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/dialog_bg"
    android:gravity="center"
    android:orientation="vertical"
    android:padding="10px">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom"
        android:orientation="horizontal">

        <android.support.v7.widget.RecyclerView
            android:id="@+id/popup_rcv"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>

        <EditText
            android:id="@+id/new_comment_et"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:hint="Please enter Comment" />

        <Button
            android:id="@+id/comment_btn"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Submit" />
    </LinearLayout>
</LinearLayout>

//来自Source

的动画

Oneplus 6T 输出:

在一加中,当我将 .showAtLocation 更改为其他数字时,我的动画也会禁用

Lenovo K8 输出 注:

在 K8 中注意如果我更改为另一个值,弹出窗口的位置也会更改。

提前致谢。

看起来这两部手机的屏幕分辨率不同。所以你必须使用 DP 而不是像素。检查这个 post

弹出窗口大小。 首先,您必须将对话框大小转换为像素。 这些是随机值并且是硬编码的,但您也可以从资源或硬编码中获取它们。

val popUpWidthDp = 200
val popUpHeightDp = 100

val popUpWidthPx = convertDpToPx(popUpWidthDp)
val popUpHeightPx = convertDpToPx(popUpHeightDp)

val popupWindow = PopupWindow(customView, popUpWidthPx, popUpHeightPx, true)

弹出位置。首先你需要将dp转换为px然后你可以计算与屏幕尺寸相关的弹出位置。

val popUpLeftSideMarginDp = 50
val popUpTopMarginDp = 100

val popUpXPoint = convertDpToPx(popUpLeftSideMarginDp)
val popUpYPoint = convertDpToPx(popUpTopMarginDp)

popupWindow.showAtLocation(linearLayout1, Gravity.CENTER, popUpXPoint, popUpYPoint)

查看此 answer 了解如何将 dp 转换为像素,反之亦然。

如果弹出窗口的大小和位置应与屏幕大小相关,那么您必须更改这些值:

  • popUpHeightPx、popUpWidthPx - 弹出窗口大小

  • popUpXPoint, popUpYPoint - 弹出位置

如果您需要详细说明,请告诉我。

创建 PopupWindow 为:

popupWindow= new PopupWindow(
                        customView,
                        LayoutParams.MATCH_PARENT,
                        LayoutParams.MATCH_PARENT
                );

并将其位置设置为:

popupWindow.showAtLocation(linearLayout1, Gravity.CENTER, 0, 0)

并在xml

中添加customView top margin 10dp or 5dp

尝试使用以下解决方案:它在 Java 中,但您可以在 Kotlin 中转换它

PopupWindow popupWin = new PopupWindow(mContext);

// Measure layout here, then we can get measureHeight.
layout.measure(View.MeasureSpec.UNSPECIFIED, View.MeasureSpec.UNSPECIFIED);
popupWin .setWidth(layout.getMeasuredWidth()); 
popupWin .setHeight(layout.getMeasuredHeight()); //you can pass height as you want.
popupWin .setContentView(layout);
popupWin .showAsDropDown(anchorView,0 ,0, Gravity.NO_GRAVITY);

此处 anchorView 是我们要在下拉列表中打开 PopupWindow 的视图。

PopupWindow

我认为您希望将像素转换为 dp,而不是将 dp 转换为像素,以适应不同分辨率的屏幕。更多信息 here.

这是how将像素转换为 dp。