2013-01-06 100 views
1

我試圖找到一種方法來實現可以在圖像上移動的形狀(矩形)。用戶將矩形拖到圖像中的一個區域,最終選擇它。在imageview上移動形狀?

這怎麼辦?我應該使用什麼?任何幫助,將不勝感激!

回答

1

使用帆布

choosenImageView = (ImageView) this.findViewById(R.id.ChoosenImageView); 

    canvas = new Canvas(bitmap); //Bitmap 
    mBitmapPaint = new Paint(); 
    mBitmapPaint.setAntiAlias(true); 
    mBitmapPaint.setStyle(Paint.Style.STROKE); 
    mBitmapPaint.setStrokeWidth(5); 
    choosenImageView.setOnTouchListener(this);