8

我知道这应该很简单,但android:scaleType="centerCrop"不会裁剪图像

我得到了1950 像素宽的图像,需要按照父级的宽度对其进行裁剪。但android:scaleType="centerCrop"不裁剪图像。例如,我需要在布局中做什么以仅显示前400 个像素或任何屏幕/父宽度

对不起简单的问题 - 尝试谷歌它 - 那里只有复杂的问题。我是新来的,所以请不要投票)

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/rl1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/background_color">

    <ImageView
            android:id="@+id/ver_bottompanelprayer"
            android:layout_width="match_parent"
            android:layout_height="227px"
            android:layout_alignParentBottom="true"
            android:layout_alignParentLeft="true"
            android:scaleType="matrix"

            android:background="@drawable/ver_bottom_panel_tiled_long" />

</RelativeLayout>

如果有唯一的方法是以编程方式裁剪它 - 请给我一个方法的建议

4

4 回答 4

17

好的,我会将评论粘贴为答案:) ->

RelativeLayout rl = (RelativeLayout) findViewById(R.id.rl1);

final Options bitmapOptions=new Options();
DisplayMetrics metrics = getResources().getDisplayMetrics();
bitmapOptions.inDensity = metrics.densityDpi;
bitmapOptions.inTargetDensity=1;

/*`final` modifier might be necessary for the Bitmap*/
Bitmap bmp= BitmapFactory.decodeResource(getResources(), R.drawable.ver_bottom_panel_tiled_long, bitmapOptions);
bmp.setDensity(Bitmap.DENSITY_NONE);
bmp = Bitmap.createBitmap(bmp, 0, 0, rl.getWidth(), bmp.getHeight());

然后在代码中:

ImageView iv = (ImageView)v.findViewById(R.id.ver_bottompanelprayer);
if (iv != null){
  iv.setImageBitmap(bmp);
}

干杯:)

于 2013-08-14T12:48:10.393 回答
10

您还可以使用createBitmap以编程方式裁剪图像。

Bitmap bm = BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher);
bm = Bitmap.createBitmap(bm, 0, 0, 400, 400);
your_imageview.setImageBitmap(bm);

这里 400 是您的宽度和高度,您可以根据需要更改。

于 2013-08-14T12:46:13.247 回答
1

做它android:scaleType="fitStart"并为android:layout_height="400px"

于 2013-08-14T12:44:53.647 回答
1

您可以以编程方式执行此操作(这可确保您获得正确的高度/宽度):

ImageView image = (ImageView) findVieById(R.id.ver_bottompanelprayer);
DisplayMetrics dm = getResources().getDisplayMetrics();
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(1950, dm.heightPixels);
params.addRule(RelativeLayout.ALIGN_PARENT_LEFT);
params.addRule(RelativeLayout.ALIGN_PARENT_TOP);
image.setLayoutParams(params);
image.setScaleType(ScaleType.FIT_XY);
于 2013-08-14T12:49:16.757 回答