向弹出窗口添加阴影或边框 - android

时间:2016-04-14 15:23:57

标签: android xml styles popupwindow shadow

我有一个连接到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);

0 个答案:

没有答案