私はアンドロイドが初めてです。これが私の質問です。Androidで移動できるポップアップウィンドウはありますか? ドラッグできるポップアップ ウィンドウまたはその他のダイアログを実装する方法。また、このポップアップ ウィンドウは他のウィンドウをブロックしませんか? ポップアップしても、メインウィンドウで他の機能を使用できます。
前もって感謝します
ここに私の作品のサンプルコードがあります。その仕組みを宣言するためにコメントをします
LayoutInflater inflater = (LayoutInflater) this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
// your custom view
View popView = inflater.inflate(R.layout.pop_view, null);
// initialise your pop window
// take custom view , with specific width , height
PopupWindow popupWindow = new PopupWindow(popView, WindowManager.LayoutParams.WRAP_CONTENT, WindowManager.LayoutParams.WRAP_CONTENT, true);
ImageView imageview = (ImageView) popView.findViewById(R.id.imageview);
Button dismiss = (Button) popView.findViewById(R.id.disbutton);
imageview.setImageURI(imagePath);
// button used to open pop window
popupWindow.showAsDropDown(ChooseFile, 50, -30);
// here is the part related to move popwindow
popView.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent event) {
int orgX = 0, orgY = 0;
int offsetX, offsetY;
switch (event.getAction()) {
case MotionEvent.ACTION_DOWN:
orgX = (int) event.getRawX();
orgY = (int) event.getRawY();
break;
case MotionEvent.ACTION_MOVE:
offsetX = (int) event.getRawX() - orgX;
offsetY = (int) event.getRawY() - orgY;
// update popwindow postion , -1 set for width & height to make it fixed not changed
popupWindow.update(offsetX, offsetY, -1, -1);
break;
}
return true;
}
});
dismiss.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
// if you want dismiss your pop window
popupWindow.dismiss();
}
});
}
この目的で PopupWindow クラスを使用する場合は、次のリンクを参照してください: http://www.mobilemancer.com/2011/01/08/popup-window-in-android/