アンドロイド携帯タッチライン

2373 ワード

1.MyPaintViewコンポーネントの定義
public class MyPaintView extends View {
    private List<Point> allPoint = new ArrayList<Point>();
    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<Point>();  // 
                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<Point> 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はカスタマイズされており、完全なパッケージ名を追加する必要があります.
<com.example.administrator.ontouchtest.MyPaintView
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:id="@+id/paintView"/>

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);
        }
}