我有一个连接到xml内容的弹出窗口。我想要一个阴影或寄宿生,所以它提供了一个更好的表示,表明它是一个新窗口。我如何用XML或Java做到这一点?
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View layout = inflater.inflate(R.layout.new_popup, null);
PopupWindow pw = new PopupWindow(layout, ViewGroup.LayoutParams.WRAP_CONTENT, 650);
pw.setAnimationStyle(android.R.style.Animation_Dialog);
pw.showAtLocation(layout, Gravity.CENTER, ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);