ShowAtLocation方法用于将View显示在指定的位置上,具体使用方法如下:
View view = findViewById(R.id.your_view_id);
View parentView = findViewById(R.id.parent_view_id);
ViewGroup.LayoutParams layoutParams = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
view.setLayoutParams(layoutParams);
int x = 100; // x坐标
int y = 200; // y坐标
popupWindow.showAtLocation(parentView, Gravity.NO_GRAVITY, x, y);
通过以上步骤,就可以将指定的View显示在指定的位置上。