我在一个活动中有一个 ImageView,我必须检索其左上角坐标,以便我可以将 imageview 划分为 5 个触摸区域。我使用 getLocationOnScreen 来获取这些坐标。
X 坐标很好但是 Y 坐标由于某种原因似乎有问题,总是有一个偏移量,它似乎指向窗口的顶部(通过在开发工具中启用指针触摸来验证这一点)。
这是活动代码:
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.activity_main);
amslerView = (ImageView) findViewById(R.id.amsler_grid);
locText = (TextView) findViewById(R.id.locationLabel);
amslerView.setOnTouchListener(new OnTouchListener()
{
@Override
public boolean onTouch(View v, MotionEvent event)
{
switch (event.getAction())
{
case MotionEvent.ACTION_DOWN :
startX = (int) event.getRawX();
startY = (int) event.getRawY();
int[] loc = new int[2];
amslerView.getLocationOnScreen(loc);
Log.i("Screen Location of View", "X:" + loc[0] + "\t Y:" + loc[1]);
locText.setText("Location " + startX + " " + startY + "Screen View Location is " + "X:" + loc[0] + "\t Y:" + loc[1]);
break;
case MotionEvent.ACTION_UP :
endX = (int) event.getX();
endY = (int) event.getY();
// locText.setText("End Location " + endX + "\t" +
// endY);
break;
}
return true;
}
});
}
这是 XML 布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity" >
<ImageView
android:id="@+id/amsler_grid"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="1"
android:adjustViewBounds="true"
android:contentDescription="Amsler Grid"
android:padding="0dp"
android:scaleType="center"
android:src="@drawable/amsler_boundary" />
这是我面临的问题的截图:http: //puu.sh/4d1LJ.jpg
如您所见,X坐标很好,但Y坐标显示位置http://puu.sh/4d1OJ.jpg
任何帮助表示赞赏,坦率地说,我不知道为什么会发生这种情况。