如何从自定义视图中获取坐标 android

how to Get coordinates from Custom view android

我有一些带有 onTouchEvent 的自定义视图,我在其中设置了 mX 和 mY。

mx=event.getX();
my=event.getY();

这是为了获取触摸事件的绘制路径 - 效果很好,我可以 查看我的文本视图中定义的坐标 activity.

我想在我的主 activity 布局中使用这 2 个属性 用于设置背景颜色 例如

if (mx > 1000 && my > 100 ){
set color 
}

但似乎 mx 和 my 没有得到任何值 我尝试的是

custom_view paintview = (custom_view) findViewById(R.id.custum_view_id)
float mx =paintview.getmx();
float my =paintview.getmy();

也许我没有在自定义视图中正确定义 getmx?

public float getmx(){
return mx;
}

我是 Java 和 android 的新人,所以请放轻松 :)

正在添加 MainActiviy。

public class MainActivity extends AppCompatActivity {


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        // Drawing - custom view
        drawView = (Drawing) findViewById(R.id.drawing);

        findCoordinates();

        TextView Coordinates = (TextView) findViewById(R.id.CNcoordinates);

        //Coordinates - message with coordinates
        paintView.setTextView(Coordinates);

    }

    private Drawing drawView;


    public void findCoordinates() {
        Drawing paintView = (Drawing) findViewById(R.id.drawing);
        float xX = drawView.getmX();
        float yY = drawView.getmY();
        int nColor = Color.BLUE;
        View buttonmove1 = findViewById(R.id.layoutMove);
        if (Math.abs(xX) > 1000 && Math.abs(yY) > 1000) {
            buttonmove1.setBackgroundColor(nColor);
        }
    }

坐标来自:

protected void onDraw(Canvas canvas) {
        canvas.drawBitmap(canvasBitmap, 0, 0, canvasPaint);
        canvas.drawPath(drawPath, drawPaint);
    }
    @Override
    public boolean onTouchEvent(MotionEvent event) {

         mX = event.getX();
         mY = event.getY();

        View buttonmove = findViewById(R.id.drawing);
        switch (event.getAction()) {
            case MotionEvent.ACTION_DOWN:
                drawPath.moveTo(mX, mY);

                if(myCoordinates!=null){
                    myCoordinates.setText(":" + mX + " , " + ":" + mY);
                }
                break;




public void setTextView(TextView tv){
        myCoordinates = tv;
    }

完成touchEvent 后使用接口或回调。你必须重新打电话给你的

findCoordinates()

所以它会更新您的 UI 对新值的尊重。

我成功使用 OnViewTouchListener 作为回调:

在自定义视图中添加方法:

private OnViewTouchListener OnViewTouchListener;
public interface OnViewTouchListener {
public void  onViewTouched (float x, float y, boolean touched);
}

public void setOnViewTouchListener (OnViewTouchListener listener){
 OnViewTouchListener = listener; 
}