android绘图触摸事件

Jas*_*son 5 android canvas bitmap touch-event

我正在尝试制作一个应用程序,使用户可以触摸屏幕并根据用户的手指坐标绘制图像.这是我的代码:

public class DrawingBoard extends View {

        Drawable editIcon = getResources().getDrawable(R.drawable.icon);
        Bitmap mBitmap = BitmapFactory.decodeResource(getResources(), R.drawable.background);

        float xPos = 0;
        float yPos = 0; 

        public DrawingBoard (Context context) {
            // TODO Auto-generated constructor stub
            super (context);            
        }
        @Override
        protected void onDraw (Canvas canvas) {
            super.onDraw(canvas);

            canvas.save();
            canvas.drawBitmap(mBitmap, 0, 0, null);
            canvas.translate(xPos, yPos);
            editIcon.draw(canvas);
            canvas.restore();

            invalidate();
        }
        @Override
        public boolean onTouchEvent (MotionEvent event) {

            switch (event.getAction()) {
                case MotionEvent.ACTION_DOWN : 
                    xPos = event.getX();
                    yPos = event.getY();
                    break;
            }

            return true;

        }
    }
}
Run Code Online (Sandbox Code Playgroud)

但是,每当我尝试在模拟器中点击屏幕时,都没有显示图像....

请指出我的错误... THX

Pir*_*hah 0

我已经多次发布了这个问题的答案,这段代码100%有效。如果您还有任何疑问,可以联系我

但此代码适用于在谷歌地图上绘制图像:

public boolean onTouchEvent(MotionEvent event, MapView mapView) 
     {   

        if (event.getAction() == 1) 
      {                
            GeoPoint p = mapView.getProjection().fromPixels(
                (int) event.getX(),
                (int) event.getY());
                Toast.makeText(getBaseContext(), "lat and longtd is \n "+
                    p.getLatitudeE6() / 1E6 + "," + 
                    p.getLongitudeE6() /1E6 , 
                    Toast.LENGTH_LONG).show(); //
               mapView.getOverlays().add(new MarkerOverlay(p));
                mapView.invalidate();
        } 
                return true;


    }  
Run Code Online (Sandbox Code Playgroud)

并定义另一个(第二个)覆盖类...该事件将在其中发生。

  class MarkerOverlay extends Overlay
{
     private GeoPoint p;
    private Projection projection; 

     public MarkerOverlay(GeoPoint p)
     {
        this.p = p;
     }

     @Override
     public boolean draw(Canvas canvas, MapView mapView,boolean shadow, long when)
     {
        super.draw(canvas, mapView, shadow);                   

        //---translate the GeoPoint to screen pixels---
        Point screenPts = new Point();
        mapView.getProjection().toPixels(p, screenPts);

        //---add the marker---
        Bitmap bmp = BitmapFactory.decodeResource(getResources(),R.drawable.pir_pictr);            
        canvas.drawBitmap(bmp, screenPts.x, screenPts.y-50, null);

        return true;   
     }



 }
Run Code Online (Sandbox Code Playgroud)

  • 这个问题和谷歌地图有什么关系? (4认同)