ImageView中的Android中心位图

时间:2014-07-29 07:41:52

标签: android android-layout bitmap

我有一个ImageView,它显示了一个Bitmap。当我将Bitmap设置为ImageView时,它不居中。我还尝试将scaleType设置为center,centerCrop,centerInside。

这是我在布局中的ImageView:

    android:id="@+id/xyz"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginBottom="15dp"
    android:layout_marginTop="3dp"
    android:layout_weight="1.03"
    android:background="#FFFFFFFF" 
    android:adjustViewBounds="true"
    android:scaleType="fitXY"

修改 这是调整位图大小的代码:

private void scaleImage() {
    Bitmap bitmap = getHostPage().getBackgroundDrawing();

    int width = bitmap.getWidth();
    int height = bitmap.getHeight();
    int bounding = dpToPx(250);
    float xScale = ((float) bounding) / width;
    float yScale = ((float) bounding) / height;

    Matrix matrix = new Matrix();
    matrix.postScale(xScale, yScale);

    Bitmap scaledBitmap = Bitmap.createBitmap(bitmap, 0, 0, width, height, matrix, true);
    width = scaledBitmap.getWidth(); 
    height = scaledBitmap.getHeight(); 
    BitmapDrawable result = new BitmapDrawable(scaledBitmap);

    getHostPage().setBackgroundDrawing(result.getBitmap());

    LinearLayout.LayoutParams params = (LinearLayout.LayoutParams) drawView.getLayoutParams(); 
    params.width = width;
    params.height = height;
    drawView.setLayoutParams(params);

}

private int dpToPx(int dp) {
    float density = hostPage.getHostActivity().getApplicationContext().getResources().getDisplayMetrics().density;
    return Math.round((float)dp * density);
}

bitmap

3 个答案:

答案 0 :(得分:1)

使用它:

android:gravity="center|center_vertical"
android:layout_gravity="center|center_vertical"

答案 1 :(得分:0)

在图片视图中添加xml代码:

android:layout_centerHorizontal="true"

我认为它可以帮到你。

感谢。

答案 2 :(得分:0)

    android:id="@+id/xyz"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginBottom="15dp"
    android:layout_marginTop="3dp"
    android:layout_weight="1.03"
    android:background="#FFFFFFFF" 
    android:gravity="center"
    android:adjustViewBounds="true"
    android:scaleType="fitXY"