我有一個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的下方
那麼有什麼方法可以讓popupwindow在main布局的下層嗎