我尝试将图像切片连接到一个画布
这是我的代码
Canvas createCanvas(Bitmap[][] array){
int height = array[0][0].getHeight();
int width = array[0][0].getWidth();
Bitmap bitmap = Bitmap.createBitmap(3*height,3*width,Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(bitmap);
canvas.drawBitmap (array[0][0],0f,0f,new Paint(Paint.ANTI_ALIAS_FLAG));
canvas.drawBitmap (array[0][1],width,0f,new Paint(Paint.FILTER_BITMAP_FLAG));
//etc..etc..for all the tiles
return canvas;
}
像这样调用这个方法:
//source File
Bitmap bMap = BitmapFactory.decodeResource(getResources(),R.drawable.image);
//Tile Source File
Bitmap [][] array_ref = helper_ref.createImageArrays(bMap);
//Invoke Method above
Canvas canvas = helper_ref.createCanvas(array_ref);
//Draw canvas
ImageView view_ref = (ImageView) findViewById(R.id.imageView1);
view_ref.draw(canvas);
我还为您提供了我想要绘制的视图。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
/>
答案 0 :(得分:1)
看看Google docs对你在最后一行调用的方法“画”的看法:
void draw(Canvas canvas)
Manually render this view (and all of its children) to the given Canvas.
所以这是唯一的事情就是将ImageView(它是空的)绘制到该画布上。所以实际发生的事情与你想要实现的目标相反:你将ImageView绘制到该位图中,而不是反过来。
解决方案很简单:最后,您的方法createCanvas
不应返回画布,而应返回您绘制的位图。使用位图,执行以下操作:
view_ref.setBackgroundDrawable(new BitmapDrawable(getResources(), bitmap));
这应该可以解决问题。