搜索

首页  >  问答  >  正文

android-studio - android popupWindow 中宽度莫名很大,求帮助?

这个是popupwindow的内容xml(就是放了个ListView):

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/ppw_settings_normal"
android:orientation="vertical" >

<ListView
    android:id="@+id/lv_ppw_settings_lists"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:piderHeight="0dp"
    android:listSelector="@android:color/transparent" >
</ListView>

</LinearLayout>
展现popupwindow的时候,

public MenuPopup(final Context context) {
        **super(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);**
        View contentView = LayoutInflater.from(context).inflate(resId, null);
        ListView lv = (ListView) contentView
                .findViewById(R.id.lv_ppw_settings_lists);
        String[] menuItems = context.getResources().getStringArray(R.array.associator_query_menu);
        PopupSettingsAdapter adapter = new PopupSettingsAdapter(context, menuItems);
        ....
        }

我都用了wrap_content了
然而结果却是:

醉了,这是什么缘故。。。

迷茫迷茫2772 天前576

全部回复(3)我来回复

  • ringa_lee

    ringa_lee2017-04-17 15:35:42

    因为wrap_content对ListView是不起效的,没有明确的width hight,默认都是会撑满。

    回复
    0
  • 伊谢尔伦

    伊谢尔伦2017-04-17 15:35:42

    。。用popupMenu吧。。那才是你想要的效果,并且比你这个简单美观多了

    回复
    0
  • 阿神

    阿神2017-04-17 15:35:42

    可能是ListView 的item的布局问题吧

    回复
    0
  • 取消回复