// popupWindow自適應大小 popupWindow = new PopupWindow(view, LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT); // 設置PopupWindow的大小(寬度和高度) // 高度和寬度爲屏幕的比例 popupWindow.setWidth(display.getWidth() * 9 / 10); popupWindow.setHeight(display.getHeight() * 9 / 10); popupWindow.setBackgroundDrawable(getResources().getDrawable( R.drawable.pop_bg));web