0

カメラビューの特定の部分を選択したい。タッチで動的にサイズを変更できる、サイズ変更可能な長方形/円を描くことを考えています。

4

1 に答える 1

0

onDrawメソッドをオーバーライドする

private void onDraw(Canvas c){

invalidate();
super.onDraw();

//detect position of two fingers touching screen to define the corners of your rectangle

//draw your rectangle
}
于 2013-03-15T18:56:23.277 に答える