我有一个在 HorizontalScrollView 中定义的 ImageView 的活动。图像源是一个 9-patch 文件,它被限制为仅拉伸右边缘以填充屏幕。我已经实现了一个简单的缩放功能,它允许用户通过调整位图大小并将新位图分配给视图来放大和缩小。我当前的问题是,当我双击以缩小时,当我将新的调整大小的位图分配给视图时,不会应用 9-patch。换句话说,它不是仅拉伸 9-patch 文件中定义的右边缘,而是拉伸了整个图像。
这是我的 XML:
<HorizontalScrollView
android:id="@+id/hScroll"
android:fillViewport="true"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fadingEdge="none" >
<RelativeLayout
android:id="@+id/rlayoutScrollMap"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ImageView
android:id="@+id/imgResultMap"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="fitXY"
android:src="@drawable/map_base"/>
</RelativeLayout>
</horizontalScrollView>
这是我的代码的相关部分,在 onDoubleTap() 调用中:
public boolean onDoubleTap(MotionEvent e)
{
if (zoom == 1) {
zoom = 2; // zoom out
} else {
zoom = 1; // zoom in
}
Bitmap image = BitmapFactory.decodeResource(getResources(),R.drawable.map_base);
Bitmap bmp = Bitmap.createScaledBitmap(image, image.getWidth() * zoom, image.getHeight() * zoom, false);
ImageView imgResultMap = (ImageView)findViewById(R.id.imgResultMap);
imgResultMap.setImageBitmap(bmp);
return false;
}
编辑:在做了一些研究之后,我想通了。我不仅需要操作位图,还需要包含 9-patch 块,它不是位图图像的一部分,以重新构造一个新的 9-patch 可绘制对象。请参阅下面的示例代码:
...
else {
// Zoom out
zoom = 1;
Bitmap mapBitmapScaled = mapBitmap;
// Load the 9-patch data chunk and apply to the view
byte[] chunk = mapBitmap.getNinePatchChunk();
NinePatchDrawable mapNinePatch = new NinePatchDrawable(getResources(),
mapBitmapScaled, chunk, new Rect(), null);
imgResultMap.setImageDrawable(mapNinePatch);
}
....