0

私が間違っていることを理解するために助けが必要です。PNG 画像を背景 (キャンバス) として設定してから、特定の座標の上に別の PNG 画像を配置したいと考えています。しかし、問題は、最初に背景キャンバス PNG を設定するとそこにとどまりますが、他の画像 (上部) が読み込まれると、背景キャンバスが消えます。だから明らかに私は正しいことをしていません。

Android 開発者コミュニティからの提案は大歓迎です。

ありがとう!

以下のコードは次のとおりです。

StartNewGame.java:

package com.firm.armouredassault;

import android.app.Activity;
import android.content.pm.ActivityInfo;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.Bundle;

public class StartNewGame extends Activity {

    MyGame ourView;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        this.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);

        ourView = new MyGame(this);
        setContentView(ourView);

    }




}    

Mygame.java

package com.firm.armouredassault;

import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;

import android.view.View;

public class MyGame extends View {

    Bitmap BTank, TShell;

    public MyGame(Context context) {
        super(context);
        // TODO Auto-generated constructor stub
        BTank = BitmapFactory.decodeResource(getResources(),     R.drawable.bluetanksm);
    }

    @Override
    protected void onDraw(Canvas canvas) {
        // TODO Auto-generated method stub
        super.onDraw(canvas);

        canvas.drawBitmap(BTank, 10, 200, null);

    }

}

newgame.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/canvas"
    android:orientation="vertical" >

</LinearLayout>
4

1 に答える 1