当前位置:首页 > 开发教程 > 手机开发 >

Android获取view在屏幕中的位置

时间:2014-02-21 13:42 来源:互联网 作者:源码搜藏 收藏

getLocalVisibleRect , 返回一个填充的Rect对象, 感觉是这个View的Rect大小,left,top取到的都是0 getGlobalVisibleRect , 获取全局坐标系的一个视图区域, 返回一个填充的Rect对象;该Rect是基于总整个屏幕的 getLocationOnScreen ,计算该视图在全局坐 getLocalVisibleRect , 返回一个填充的Rect对象, 感觉是这个View的Rect大小,left,top取到的都是0




getGlobalVisibleRect , 获取全局坐标系的一个视图区域, 返回一个填充的Rect对象;该Rect是基于总整个屏幕的


getLocationOnScreen ,计算该视图在全局坐标系中的x,y值,(注意这个值是要从屏幕顶端算起,也就是索包括了通知栏的高度)//获取在当前屏幕内的绝对坐标 


getLocationInWindow ,计算该视图在它所在的widnow的坐标x,y值,//获取在整个窗口内的绝对坐标 (不是很理解= =、)


getLeft , getTop, getBottom, getRight,  这一组是获取相对在它父亲里的坐标




**注**:如果在Activity的OnCreate()事件输出那些参数,是全为0,要等UI控件都加载完了才能获取到这些,一般在onResume()方法或者触摸事件在可以获取到


example:


    int[] location = new int[2];
    v.getLocationOnScreen(location);
    int x = location[0];
    int y = location[1];




import android.view.View; 
import android.view.ViewGroup.MarginLayoutParams; 
import android.widget.RelativeLayout; 
/* 
* 获取、设置控件信息 
*/ 
public class WidgetController { 
/* 
* 获取控件宽 
*/ 
public static int getWidth(View view) 

int w = View.MeasureSpec.makeMeasureSpec(0,View.MeasureSpec.UNSPECIFIED); 
int h = View.MeasureSpec.makeMeasureSpec(0,View.MeasureSpec.UNSPECIFIED); 
view.measure(w, h); 
return (view.getMeasuredWidth()); 

/* 
* 获取控件高 
*/ 
public static int getHeight(View view) 

int w = View.MeasureSpec.makeMeasureSpec(0,View.MeasureSpec.UNSPECIFIED); 
int h = View.MeasureSpec.makeMeasureSpec(0,View.MeasureSpec.UNSPECIFIED); 
view.measure(w, h); 
return (view.getMeasuredHeight()); 



/* 
* 设置控件所在的位置X,并且不改变宽高, 
* X为绝对位置,此时Y可能归0 
*/ 
public static void setLayoutX(View view,int x) 

MarginLayoutParams margin=new MarginLayoutParams(view.getLayoutParams()); 
margin.setMargins(x,margin.topMargin, x+margin.width, margin.bottomMargin); 
RelativeLayout.LayoutParams layoutParams = new RelativeLayout.LayoutParams(margin); 
view.setLayoutParams(layoutParams); 

/* 
* 设置控件所在的位置Y,并且不改变宽高, 
* Y为绝对位置,此时X可能归0 
*/ 
public static void setLayoutY(View view,int y) 

MarginLayoutParams margin=new MarginLayoutParams(view.getLayoutParams()); 
margin.setMargins(margin.leftMargin,y, margin.rightMargin, y+margin.height); 
RelativeLayout.LayoutParams layoutParams = new RelativeLayout.LayoutParams(margin); 
view.setLayoutParams(layoutParams); 

/* 
* 设置控件所在的位置YY,并且不改变宽高, 
* XY为绝对位置 
*/ 
public static void setLayout(View view,int x,int y) 

MarginLayoutParams margin=new MarginLayoutParams(view.getLayoutParams()); 
margin.setMargins(x,y, x+margin.width, y+margin.height); 
RelativeLayout.LayoutParams layoutParams = new RelativeLayout.LayoutParams(margin); 
view.setLayoutParams(layoutParams); 



手机开发阅读排行

最新文章