安卓手机触摸画线

1.  定义 MyPaintView 组件

public class MyPaintView extends View {
    private List allPoint = new ArrayList();
    public MyPaintView(Context context, AttributeSet attrs) {
        super(context, attrs);
        super.setBackgroundColor(Color.WHITE);
        super.setOnTouchListener(new OnTouchListenerImp());
    }

    private class OnTouchListenerImp implements OnTouchListener {
        @Override
        public boolean onTouch(View v, MotionEvent event) {
            //Point类记录当前的X和Y坐标
            Point p = new Point((int)event.getX(),(int)event.getY());
            if(event.getAction() == MotionEvent.ACTION_DOWN) {  //判断抬起
                allPoint = new ArrayList();  //开始新的记录
                allPoint.add(p);   //记录坐标点
            } else if(event.getAction() == MotionEvent.ACTION_UP) {
                allPoint.add(p);   //记录坐标点
                MyPaintView.this.postInvalidate();  //重绘
            }
                return true;
        }
    }

    @Override
    protected void onDraw(Canvas canvas) {  //进行绘图
        Paint p = new Paint();
        p.setColor(Color.RED);   //设置颜色
        if(allPoint.size()>1) {
            Iterator iter = allPoint.iterator();
            Point first = null;
            Point last = null;
            while(iter.hasNext()) {    //迭代输出
                if(first == null) {
                    first = (Point) iter.next();
                } else {
                    if(last != null) {
                        first = last;       //修改起始点
                    }
                    last = (Point) iter.next();   //结束点
                    canvas.drawLine(first.x,first.y,last.x,last.y,p);
                }
            }
        }

        super.onDraw(canvas);
    }
}

2.  在activity_main.xml 中要注意,MyPaintView是自定义的,要加入完整的包名


3.  编写MainActivity

public class MainActivity extends AppCompatActivity {
        private TextView info = null;
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
        }
}

 
  

你可能感兴趣的:(Android)