我正在使用 Canvas- 和 Bitmap 类创建图像。我想将其设置为用户的背景。然后我想在它上面添加更多图像。
这是应该作为背景的图像的代码。
ImageView imgMap1 = (ImageView) findViewById(R.id.imgMap1);
imgMap1.setImageDrawable(new BitmapDrawable(Bitmap.createBitmap(bmp, 0, 0, 500, 500)));
这是使其成为背景的代码:
LinearLayout ll = new LinearLayout(this);
ll.setBackgroundResource(R.drawable.nn);
this.setContentView(ll);
这里的问题是:当我将它设置为背景时,我再也看不到另一张照片了。我怎样才能做到这一点?提前致谢。
其他图像被添加到布局中。它们可以通过手指触摸移动。用户可以用手指重新定位它们。
ImageView i1 = (ImageView) findViewById(R.id.Image1);
ImageView i2 = (ImageView) findViewById(R.id.Image2);