Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
カメラビューの特定の部分を選択したい。タッチで動的にサイズを変更できる、サイズ変更可能な長方形/円を描くことを考えています。
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 }