ポップアップを閉じる代わりに、-width、-heigtの位置で画面の外に非表示にします。画面外のポップアップを更新しようとすると、親ビューの境界で停止します。オフスクリーンまたはセミオフスクリーンで更新するにはどうすればよいですか?
View view = LayoutInflater.from(getBaseContext()).inflate(R.layout.mylayout,null);
pop = new PopupWindow(this);
pop.setTouchable(false);
pop.setHeight(200);
pop.setWidth(200);
pop.setContentView(view);
pop.showAtLocation(myparentview, 0, 50, 50);
pop.update(-200,-200,-1,-1);
問題のスナップショット: