我想选择相机视图的特定部分。我正在考虑绘制一个可调整大小的矩形/圆形,其大小可以通过触摸动态变化。
答案 0 :(得分: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
}