简体   繁体   English

Android:使用位图使用android studio显示图像时出错

[英]Android: Error while using bitmap to display image using android studio

I have created a 10x10 grid, and now would like to place an image of the player inside one of the grid squares. 我创建了一个10x10网格,现在想将播放器的图像放在其中一个网格方块中。 to do this I think i have to use bitmap? 这样做我想我必须使用位图? I will put all my code below. 我将把我的所有代码放在下面。 to try and do this anyway I created a game class which sets and gets the x position of the player image. 无论如何我尝试这样做我创建了一个游戏类,它设置并获取玩家图像的x位置。 I then created a player class, which is where I try to add the image, using Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.sokobanplayer1); 然后我创建了一个播放器类,这是我尝试添加图像的地方,使用Bitmap bitmap = BitmapFactory.decodeResource(getResources(),R.drawable.sokobanplayer1); i keep getting an error under getResources so i created a get resources method in game, but it didnt fix the problem. 我一直在getResources下得到一个错误,所以我在游戏中创建了一个get资源方法,但它没有解决问题。 could someone please show me how to do this, my code is below. 有人可以告诉我如何做到这一点,我的代码如下。

//DRAW CLASS
public class Draw extends View {
Paint red = new Paint();
Paint green = new Paint();

int rectSide = 1000;

public Draw(Context context) {
    super(context);
    red.setColor(Color.RED);
    green.setColor(Color.GREEN);
    red.setStrokeWidth(8);
    green.setStrokeWidth(8);
}

public void drawGrid(Canvas canvas) {

    int width = canvas.getWidth();
    int height = canvas.getHeight();


    float startX = (width / 2) - (rectSide / 2);
    float stopX = (width / 2) + (rectSide / 2);
    float startY = (height / 2) - (rectSide / 2);
    float stopY = (height / 2) + (rectSide / 2);

    for (int i = 0; i < 1100; i += 100) {
        float newY = startY + i;
        canvas.drawLine(startX, newY, stopX, newY, green);
    }

    for (int i = 0; i < 1100; i += 100) {

        float newX = startX + i;
        canvas.drawLine(newX, startY, newX, stopY, green);
    }
}

@Override
public void onDraw(Canvas canvas) {

    drawGrid(canvas);
}
}

//GAME CLASS
public class Game {

Bitmap image;
int x;
int y;
int height;
int width;


public void setX(int x){
    this.x = x;
}

public void setY(int y){
    this.y = y;
}

public int getX(){
    return x;
}

public int getY(){
    return y;
}

public int getHeight(){
    return height;
}

public int getWidth(){
    return width;
}

public Bitmap getResources(){
    return image;
}

}


//PLAYER CLASS
public class Player extends Game {

public Player(Bitmap res, int w, int h){

    image = res;
    x = 300;
    y = 300;
    height = h;
    width = w;

    Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.sokobanplayer1);
}
}


//MAIN ACTIVITY
public class MainActivity extends Activity {
Draw draw;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    //setContentView(R.layout.activity_main);

    draw = new Draw(this);
    draw.setBackgroundColor(Color.BLUE);
    setContentView(draw);

}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.menu_main, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    int id = item.getItemId();

    if (id == R.id.action_settings) {
        return true;
    }
    return super.onOptionsItemSelected(item);
}


}

Replace your Player class with this: 用以下内容替换您的Player类:

//PLAYER CLASS
class Player extends Game {

    public Player(Context context, int w, int h){

        x = 300;
        y = 300;
        height = h;
        width = w;

        image = BitmapFactory.decodeResource(context.getResources(), R.drawable.sokobanplayer1);
    }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM