我正在尝试将Popup窗口设置为类似于旧的Facebook评论部分。
圆角对话框,但是我遇到对话框size of dialog box
和showatlocation
的问题。
当我在其他手机上尝试此代码时:
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的动画
另外,当我将.showAtLocation更改为其他数字时,我的动画也会禁用
联想K8上的输出注意:
在K8中,如果我更改为另一个值,则弹出窗口的位置也会更改。
先谢谢您
答案 0 :(得分:5)
看起来这2部手机的屏幕分辨率不同。因此,您必须使用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-弹出位置
如果您需要详细说明,请告诉我。
答案 1 :(得分:1)
创建PopupWindow为:
popupWindow= new PopupWindow(
customView,
LayoutParams.MATCH_PARENT,
LayoutParams.MATCH_PARENT
);
并将其位置设置为:
popupWindow.showAtLocation(linearLayout1, Gravity.CENTER, 0, 0)
并在xml中添加customView上边距10dp或5dp
答案 2 :(得分:0)
尝试以下解决方案:它是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
。
答案 3 :(得分:0)