如何在Android中使Shape动态重新调整大小?

时间:2013-03-15 18:30:34

标签: android shapes

我想选择相机视图的特定部分。我正在考虑绘制一个可调整大小的矩形/圆形,其大小可以通过触摸动态变化。

1 个答案:

答案 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
}