我有一个popwindow是另外用一个XML来布局的(名字是popwindow.xml)
tPopupWindow=new PopupWindow(tContext);
tTempLayout=(LayoutInflater) tContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
tPopupWinView = tTempLayout.inflate(R.layout.popwindow, null);
tPopupWindow.setWidth(tShowRect.width());
tPopupWindow.setHeight(tShowRect.height());
tPopupWindow.setBackgroundDrawable(new BitmapDrawable());
tPopupWindow.setContentView(tPopupWinView);
tPopupWindow.setFocusable(false);
另外我的main.xml里面有一个ImageView
现在是我先显示了PopupWindow,然后显示ImageView的时候(之前是GONE的状态,这里显示是置为VISIBLE)
ImageView显示在PopupWindow的下方(基本等于被覆盖在popwindow下面)因为我的PopupWindow是半透明所以看得到比较模糊的图(如果PopupWindow是完全不透明的话是完全看不到我显示的ImageView的)
所以要怎么样让PopupWindow显示在ImageView的下方