RelativeLayout中自定义视图的位置

时间:2011-01-12 11:12:57

标签: android relativelayout

我有一个自定义View:ImageZoomView.java,它有一个setImage,并覆盖onLayout和onDraw,如下所示:

public void setImage(Bitmap bitmap) {
    mBitmap = bitmap; ...
}


@Override
protected void onDraw(Canvas canvas) {
    if (mBitmap != null && mState != null) {
        ...
        canvas.drawBitmap(mBitmap, mRectSrc, mRectDst, mPaint);
    }
}

@Override
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
    super.onLayout(changed, left, top, right, bottom);...
}

我想使用layoutParams规则在RelativeLayout中放置几个​​ImageZoomViews,但我的所有视图都停留在位置(0,0),我不知道为什么。

       ImageZoomView mZoomView = new ImageZoomView(getApplicationContext());

 mZoomView.setImage(mBitmap);
 mZoomView.setId(index+1);

 RelativeLayout relativeLayout = (RelativeLayout) findViewById(R.id.RelativeLayout01);
 RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams(screenWidth/2, screenHeight/2);
 if(index > 0)
  lp.addRule(RelativeLayout.RIGHT_OF, index);

 relativeLayout.addView(mZoomView, lp);

我尝试使用与普通ImageView完全相同的代码,它可以工作,每个视图都位于(n-1)视图的右侧......

有什么想法吗? 感谢。

1 个答案:

答案 0 :(得分:0)

我怀疑你的变量索引可能保持在0值 - 确保它正在增加。