0

ペイントとサブレイアウトのメソッドをオーバーライドして、カスタム ダイアログ ボックスを作成する方法を知っています。作成中のカスタム ダイアログ ボックスの背景として、プレーンなビットマップ イメージを追加したいと考えています。誰でもこれに対する解決策を知っていますか?

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 に答える