獲取屏幕的中心x,y坐標,代碼如下:
Display display = getWindowManager().getDefaultDisplay();
final Point size = new Point();
display.getSize(size);
height = size.y;
float centerY=height/2;//i expect this is the y coordinate of center
但是沒有反應。
SomeImageView.setY(centerY);
沒看到屏幕的中心坐標在哪兒。
獲得屏幕的長寬
然後長寬除2不就是 中心坐標