-1

tl;dr Look at title + netbeans

I've been writing a game as I have been learning both Java and Android*. Most of it has gone without a hitch- but here we go. To my understanding- each screen (main menu, gameplay, highscores, ect) is a separate Activity and therefore needs a different layout.

Problem 1: EDIT: Solved. Thanks Daniel.

Problem 2: Then in the GameActivity.java file there is an error of cannot find symbol (symbol main_1 location class layout). Help?

    package lolfighter.notriot;

    import android.app.Activity;
    import android.os.Bundle;
    import lolfighter.notriot.nojoke.R.*;
    // @author DEVELOPMENT 
    public class GameActivity extends Activity {
        @Override
public void onCreate(Bundle icicle) {
        super.onCreate(icicle);
        setContentView(layout.main_1);
    }

Also why is the bundle icicle? I have not specified this anywhere.

Edit- Not solved

*- I am in a partnership of sorts with a friend- the original plan was that he would handle all the code and I would handle all the graphic resources (He took an actual class for the Java language) But he has ran into a roadblock. I can't ask him because he has limited internet access (lunch breaks only) and lives in a different state (we go to college together)

user2390828
  • 25
  • 1
  • 6

1 Answers1

1

Problem 2: then in the GameActivity.java file there is an error of cannot find symbol (symbol main_1 location class layout). Help?

Change layout.main_1 to R.layout.main_1.

Also why is the bundle icicle? I have not specified this anywhere.

You can rename the variable to be whatever you want, it doesn't matter.

Alex Lockwood
  • 83,063
  • 39
  • 206
  • 250