搬砖的时候,需要在popupwindow里嵌套一个ListView用来展示动态菜单。重写了ListView的高度为所有的Item高度之和。
item:
<?xml version="1.0" encoding="utf-8"?>
<Button xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="45dp"
android:layout_marginTop="10dp"
style="@null"
android:maxHeight="45dp"
android:background="@drawable/box"
android:text="取消"
android:textColor="#1a99f3"
android:textSize="15sp" />
这里可以看到,我声明了高度为45dp。但是添加到ListView的时候,却发现在手机上显示的高度明显大于45dp。
根据图片我们可以看到,下面三个按钮显示的高度跟第一个显示的高度,差了差不多两倍多的高度。
原来原因在这里:
我们在是使用
inflater.inflate(R.layout.item_popumenu, root, attachToRoot);
来添加到父布局中,但是对于这几个参数却没有去研究。以下是我在网上找到的:
1. 如果root为null,attachToRoot将失去作用,设置任何值都没有意义。
2. 如果root不为null,attachToRoot设为true,则会给加载的布局文件的指定一个父布局,即root。
3. 如果root不为null,attachToRoot设为false,则会将布局文件最外层的所有layout属性进行设置,当该view被添加到父view当中时,这些layout属性会自动生效。
4. 在不设置attachToRoot参数的情况下,如果root不为null,attachToRoot参数默认为true。
其实也看得我云里雾里,但是大概知道解决的方法了。
View view = inflater.inflate(R.layout.item_popumenu, parent, false);
这里的parent一定要填它的父布局,第三个参数设置为false就好了。