View getLocationInWindow getLocationOnScreen

I ended up solving this issue by determining the height of the status/notification bar like so:

View globalView = ...; // the main view of my activity/application DisplayMetrics dm = new DisplayMetrics(); this.getWindowManager().getDefaultDisplay().getMetrics(dm); int topOffset = dm.heightPixels - globalView.getMeasuredHeight(); View tempView = ...; // the view you'd like to locate int[] loc = new int[2]; tempView.getLocationOnScreen(loc); final int y = loc[1] - topOffset;

这段代码的作用是,在View中(不包含title)计算某个view相对Main View的y坐标


int[] location = new int[2] ;
view.getLocationInWindow(location); //获取在当前窗口内的绝对坐标
view.getLocationOnScreen(location);//获取在整个屏幕内的绝对坐标
location [0]--->x坐标,location [1]--->y坐标
如果在Activity的OnCreate()事件输出那些参数,是全为0,要等UI控件都加载完了才能获取到这些。

private ViewFlipper flipper; @Override public void onCreate(Bundle savedInstanceState) { Log.i("demo", "onCreate"); super.onCreate(savedInstanceState); setContentView(R.layout.main); flipper = (ViewFlipper)findViewById(R.id.flipper); Log.d("demo", "left:" + flipper.getLeft()); Log.d("demo", "right:" + flipper.getRight()); Log.d("demo", "Top:" + flipper.getTop()); Log.d("demo", "Bottom:" + flipper.getBottom()); Button btn = (Button)findViewById(R.id.button2); btn.setOnClickListener(new OnClickListener(){ public void onClick(View v) { Log.i("demo", "onClick"); Log.d("demo", "left:" + flipper.getLeft()); Log.d("demo", "right:" + flipper.getRight()); Log.d("demo", "Top:" + flipper.getTop()); Log.d("demo", "Bottom:" + flipper.getBottom()); } }); }
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值