android:如何以编程方式修改图像视图的大小?

时间:2016-12-27 09:22:35

标签: java android imageview android-bitmap

我通过从图库中选择图片来设置帐户的个人资料图片

    @Override
public void onClick(View v) {
    switch (v.getId()) {
        case R.id.profile_image :
            Intent intent = new Intent();
            intent.setType("image/*");
            intent.setAction(Intent.ACTION_GET_CONTENT);
            startActivityForResult(Intent.createChooser(intent, "Select Picture"), GALLERY);

    }
    }
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (requestCode == GALLERY && resultCode != 0) {
        profileImage.setImageBitmap(null);
            if (Image != null)
                Image.recycle();
        Uri mImageUri = data.getData();
        try {
            Image = MediaStore.Images.Media.getBitmap(this.getContentResolver(), mImageUri);
                profileImage.setImageBitmap(Image);
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

这很完美,但有一个问题,图像高度和宽度会因不同的图像而变化。我想要的是将图像大小和宽度修复为150 dp? 以下是我的xml代码

<ImageView
    android:id="@+id/profile_image"
    android:layout_width="150dp"
    android:layout_height="150dp"
    app:srcCompat="@android:drawable/sym_def_app_icon"
    android:clickable="true"/>

3 个答案:

答案 0 :(得分:2)

你可以使用&#34; centerCrop&#34; scaleType用于此目的。

<ImageView
     android:id="@+id/profile_image"
     android:layout_width="150dp"
     android:layout_height="150dp"
     android:scaleType="centerCrop"/>

其他比例类型是:

CENTER
将图像置于视图中心,但不执行缩放。

CENTER_CROP
均匀缩放图像(保持图像的纵横比),使图像的尺寸(宽度和高度)等于或大于视图的相应尺寸(减去填充)。

CENTER_INSIDE
均匀缩放图像(保持图像的纵横比),使图像的尺寸(宽度和高度)等于或小于视图的相应尺寸(减去填充)。

FIT_CENTER
使用CENTER缩放图像。

FIT_END
使用END缩放图像。

FIT_START
使用START缩放图像。

FIT_XY
使用FILL缩放图像。

MATRIX
绘图时使用图像矩阵缩放。

答案 1 :(得分:0)

<ImageView
    android:id="@+id/profile_image"
    android:layout_width="150dp"
    android:layout_height="150dp"
    app:srcCompat="@android:drawable/sym_def_app_icon"
    android:layout_centerInParent="true"
    android:adjustViewBounds="true"
    android:clickable="true"/>

请将以上两个属性添加到ImageView

答案 2 :(得分:0)

您应该将LayoutParams设置为您要调整大小的视图:

private void resizeImageView(ImageView iv, int w, int h) {
    //set width and height in pixels
    iv.setLayoutParams(new ViewGroup.LayoutParams(w, h));
    //or if w and h are in dp:
    //iv.setLayoutParams(new ViewGroup.LayoutParams(dpToPx(this, w), dpToPx(this, h)));
}

private int dpToPx(Activity activity, int dp) {
    DisplayMetrics metrics = new DisplayMetrics();
    activity.getWindowManager().getDefaultDisplay().getMetrics(metrics);
    return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dp, metrics);
}