0

我知道通过覆盖 Paint 和 sublayout 方法来创建自定义对话框。我想添加一个普通的位图图像作为我正在创建的自定义对话框的背景。任何人都知道任何解决方案?

4

1 回答 1

0

希望这是您正在寻找的

backgroundBitmap = Bitmap.getBitmapResource("background.png");
//Override the paint method to draw the background image.
    public void paint(Graphics graphics) {
        //Draw the background image and then call paint.
        graphics.drawBitmap(0, 0, 240, 240, backgroundBitmap, 0, 0);
        super.paint(graphics);
    }            
于 2012-05-12T13:57:58.897 回答