1

我在一个活动中有一个 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

任何帮助表示赞赏,坦率地说,我不知道为什么会发生这种情况。

4

2 回答 2

1

终于发现哪里不对了,Y偏移是因为同时考虑了状态栏和ActionBar的高度。所以在我的例子中,偏移量是 108(ActionBar 为 75,状态栏为 33)。编写两个函数来计算这些高度并从 getRawY() 返回的值中减去它们解决了这个问题。

于 2013-09-09T05:44:52.590 回答
0

而不是这个

 case MotionEvent.ACTION_DOWN :
                startX = (int) event.getRawX();
                startY = (int) event.getRawY();

试试这个

case MotionEvent.ACTION_DOWN:
                //Get X, Y coordinates from the ImageView
                X = (int) event.getX();
                Y = (int) event.getY();
于 2013-08-28T14:31:05.973 回答