Android 获取控件在整个屏幕的 XY及其他角度值
Posted 王睿丶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 获取控件在整个屏幕的 XY及其他角度值相关的知识,希望对你有一定的参考价值。
通过下面代码获得
int[] location = new int[2];
view.getLocationOnScreen(location);
int x = location[0];
int y = location[1];
Log.d("tag","x:"+x+" --- y:"+y);
Log.d("tag","图片各个角Left:"+mDeleteButton.getLeft()+"Right:"+mDeleteButton.getRight()+"Top:"+mDeleteButton.getTop()+"Bottom:"+mDeleteButton.getBottom());
以上是关于Android 获取控件在整个屏幕的 XY及其他角度值的主要内容,如果未能解决你的问题,请参考以下文章
android ImageView控件,图片如何铺满整个控件?