0

即使我将 (android:layout_width="fill_parent") 给我的 Imageview 类,图像也没有全宽显示

<ImageView android:id="@+id/img"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
     android:layout_above="@+id/button_layout"
    android:layout_below="@+id/middle1"
      />  

在这里我得到了我的位图

 if (orientation != 0) {
                        Matrix matrix = new Matrix();
                        matrix.postRotate(orientation);
                        bMapRotate = Bitmap.createBitmap(bmp, 0, 0, bmp.getWidth(),
                                bmp.getHeight(), matrix, true);
                    } else
                        bMapRotate = Bitmap.createScaledBitmap(bmp, bmp.getWidth(),
                                bmp.getHeight(), true);
                    findViewById(R.id.img).setVisibility(View.VISIBLE);
//Here I set the bitmap                 ((ImageView)findViewById(R.id.img)).setImageBitmap(bMapRotate);
                    findViewById(R.id.preview).setVisibility(View.GONE);

我无法理解为什么它没有占据整个屏幕长度,即使我在我的 xml 中将 fill_parent 给 imageview

4

2 回答 2

0

看一下 ImageView 的scaleType元素。你可能想要 fitXY 我想...

于 2012-12-05T11:33:46.290 回答
0
  setScaleType(ImageView.ScaleType.MATRIX);

试试这个你的 ImageView 并确保你的位图在创建后返回相同的宽度到 ScreenWidth

于 2012-12-05T11:36:13.337 回答