2013-02-21 65 views
0

我目前正在绘制到我的应用程序中的屏幕。用户可以绘制代表他们家的房间的矩形,但目前它们仅限于最初的空间。绘制到屏幕 - 需要能够缩放和捏

什么是使屏幕简单地成为一个更大的画布上的“窗口”的最佳方式,用户可以在绘图时进行滚动,缩放等操作? (我很欣赏那里必须是一个“引”触摸模式和“移动”触控模式)

此外,画布是一个自定义视图类:

class HomerView extends View { // the custom View for drawing on 
    // set up Bitmap, canvas, path and paint 
    private Bitmap myBitmap; // the initial image we turn into our canvas 
    private Canvas myCanvas; // the canvas we are drawing on 
    private Rect myRect; // the mathematical path of the lines we draw 
    private Paint myBitmapPaint; // the paint we use to draw the bitmap 

    // get the width of the entire tablet screen 
    private int screenWidth = getContext().getResources() 
      .getDisplayMetrics().widthPixels; 
    // get the height of the entire tablet screen 
    private int screenHeight = getContext().getResources() 
      .getDisplayMetrics().heightPixels; 

    public HomerView(Context context) { // constructor of HomerView 
     super(context); 
     myBitmap = Bitmap.createBitmap(screenWidth, screenHeight, 
       Bitmap.Config.ARGB_8888); // set our drawable space - the bitmap which becomes the canvas we draw on 
     myCanvas = new Canvas(myBitmap); // set our canvas to our bitmap which we just set up 
     myRect = new Rect(); // make a new rect 
     myBitmapPaint = new Paint(Paint.DITHER_FLAG); // set dither to ON in our saved drawing - gives better color interaction 
    } 

    protected void onDraw(Canvas canvas) { // method used when we want to draw something to our canvas 
     canvas.drawColor(Color.TRANSPARENT); // sets canvas colour 
     canvas.drawBitmap(myBitmap, 0, 0, myBitmapPaint); // save the canvas to bitmap - the numbers are the x, y coords we are drawing from 
     canvas.drawRect(myRect, myPaint); // draw the rectangle that the user has drawn using the paint we set up 
    } 

    @Override 
    protected void onSizeChanged(int w, int h, int oldw, int oldh) { // if screen size changes, alter the bitmap size 
     super.onSizeChanged(w, h, oldw, oldh); 
     /*myBitmap = Bitmap.createBitmap(screenWidth, screenHeight, 
       Bitmap.Config.ARGB_8888); 
     myCanvas = new Canvas(myBitmap);*/ 
    } 

      public void drawApplianceIcon() { 
     myCanvas.drawBitmap(bmp, iX - 50, iY - 50, myBitmapPaint); 
     makeToast("Lamp Drawn To Canvas"); 
    } 


    // these variables are needed in touch listening 
    private int mX, mY, iX, iY; // current x,y and initial x,y 
    private static final float TOUCH_TOLERANCE = 4; 

private void touch_start {} // touch methods 
private void touch_move {} 
private void touch_up {} 

这是宣布的onCreate像这个:

View drawingAreaView = new HomerView(this); 
setContentView(drawingAreaView); 

我该如何调整我的代码,使它成为一个可滚动的窗口?

回答

1

视图初始化期间试试这个?

setHorizontalScrollBarEnabled(true); 
setVerticalScrollBarEnabled(true); 

我想你还需要http://developer.android.com/reference/android/view/ScaleGestureDetector.html

而有些类型的视逻辑包含所有的位置。

还发现它。

Android: Enable Scrollbars on Canvas-Based View

+0

感谢您的帮助!什么是视口?我会看看你发布的东西。 – 2013-02-21 22:07:26

+0

查看区域。我想你可以使用canvas.translate。 – 2013-02-21 23:07:17