如何以编程方式确定android中视图的坐标(位置)? 我的xml文件中有一个按钮。如何在java代码中确定该按钮的坐标?
答案 0 :(得分:1)
Here is the solution。请查看链接以查找视图的屏幕位置。
答案 1 :(得分:0)
在java代码中获取视图引用。
Integer [] location = new Integer[];
view.getLocationOnScreen(location);
现在,整数数组包含屏幕上视图的坐标。
答案 2 :(得分:0)
尝试查看方法getLocationInWindow和getLocationOnScreen。
http://developer.android.com/reference/android/view/View.html#getLocationInWindow(INT [])