WindowManager wm = (WindowManager)getSystemService(Context.WINDOW_SERVICE); int width = wm.getDefaultDisplay().getWidth(); int height = wm.getDefaultDisplay().getHeight();(2).
WindowManager wm = this.getWindowManager(); int width = wm.getDefaultDisplay().getWidth(); int height = wm.getDefaultDisplay().getHeight();
int[] location = new int[2];  
t.getLocationOnScreen(location);  
int x = location[0];  
int y = location[1];  
System.out.println("x:"+x+"y:"+y);  
System.out.println("图片各个角Left:"+t.getLeft()+"Right:"+t.getRight()+"Top:"+t.getTop()+"Bottom:"+t.getBottom()); 原文地址:http://blog.csdn.net/binrong112558058/article/details/42076429