gpt4 book ai didi

android - 弹出窗口有问题

转载 作者:IT老高 更新时间:2023-10-28 13:45:01 26 4
gpt4 key购买 nike

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

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

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

        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

一加 6T 上的输出: One plus

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

Lenovo K8 Note 上的输出:

K8 Note

在 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 - 弹出位置

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

关于android - 弹出窗口有问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54344028/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com