I've been working with LibGDX all semester and have a pretty good grasp of the errors it throws, but I can't figure this one out.
I'm using the ScrollPane class which takes a String[] to display, so I'm using a method that pulls Strings from a bunch of "game" (Not LibGDX Game) objects that have been won and puts them in the String[], but when I run this code it gives me a NullPointer on the line that has stage.draw();
When I just put ONE String in the array and run the code, it works fine, so it must be my method but I don't see why it would do this. I'm able to print the entire String[] by index before its assigned.
Below is my code and the error:
@Override
public void render(float delta) {
Gdx.gl.glClearColor(0, 0, 0, 1);
Gdx.gl.glClear(GL20.GL_COLOR_BUFFER_BIT);
stage.act(delta);
stage.draw(); //**this is the line that causes the error**
}
public void show() {
stage = new Stage();
Gdx.input.setInputProcessor(stage);
gameNotes = new String[CampusLocation.countAllNotes(game)]; //this returns String[20]
skin = new Skin(Gdx.files.internal("ui/menuSkin.json"),
(new TextureAtlas("ui/atlas.pack")));
table = new Table(skin);
table.setFillParent(true);
// table.debug();
list = new List<String>(skin);
if (!populateWonNotes()) {
list.setItems(new String[] {"No Locations Found"});
System.out.println("returned false");
} else {
list.setItems(gameNotes);
System.out.println("returned true"); //this is what is printing, so method returns true
}
scrollPane = new ScrollPane(list, skin);
table.clear();
table.setBounds(0, 0, Gdx.graphics.getWidth(), Gdx.graphics.getHeight());
table.add("NOTES").colspan(3).expandX().spaceBottom(50).row();
table.add().width(table.getWidth() / 3);
table.add().width(table.getWidth() / 3);
table.add().width(table.getWidth() / 3).row();
table.add(scrollPane).uniformX().left().expandY().top().left();
table.add(games).uniformX();
table.add(home).uniformX().bottom().right();
stage.addActor(table);
}
private boolean populateWonNotes() {
int i = 0;
if (game.lstGameContainers != null) {
for (GameContainer gc : game.lstGameContainers) {
if (gc.isWon) { //checks if the game has been won
Array<String> gcNotes = gc.getNotes(); //gets all notes for this game location
for (String s : gcNotes) {
gameNotes[i] = gc.name + ": " + s;
System.out.println("gameNotes[" + i + "] is: " + gameNotes[i]);
i++;
}
} else {
gameNotes[i] = gc.name + " Notes Locked";
System.out.println("gameNotes[" + i + "] is: " + gameNotes[i]);
i++;
}
}
return true;
} else
return false;
}
Output of the print statements in populateWonNotes()
gameNotes[0] is: Trabant Notes Locked
gameNotes[1] is: Perkins Notes Locked
gameNotes[2] is: Writing Center Notes Locked
gameNotes[3] is: UDSIS Notes Locked
gameNotes[4] is: Advising Notes Locked
gameNotes[5] is: Little Bob Notes Locked
gameNotes[6] is: Counseling Center Notes Locked
gameNotes[7] is: Dining Halls Notes Locked
gameNotes[8] is: Bus Stop Notes Locked
gameNotes[9] is: Important Dates Notes Locked
The error:
Exception in thread "LWJGL Application" java.lang.NullPointerException
at com.badlogic.gdx.scenes.scene2d.ui.List.layout(List.java:112)
at com.badlogic.gdx.scenes.scene2d.ui.Widget.validate(Widget.java:88)
at com.badlogic.gdx.scenes.scene2d.ui.List.getPrefWidth(List.java:238)
at com.badlogic.gdx.scenes.scene2d.ui.ScrollPane.getPrefWidth(ScrollPane.java:610)
at com.badlogic.gdx.scenes.scene2d.ui.Value$3.get(Value.java:65)
at com.badlogic.gdx.scenes.scene2d.ui.Table.computeSize(Table.java:793)
at com.badlogic.gdx.scenes.scene2d.ui.Table.layout(Table.java:925)
at com.badlogic.gdx.scenes.scene2d.ui.Table.layout(Table.java:719)
at com.badlogic.gdx.scenes.scene2d.ui.WidgetGroup.validate(WidgetGroup.java:106)
at com.badlogic.gdx.scenes.scene2d.ui.Table.draw(Table.java:100)
at com.badlogic.gdx.scenes.scene2d.Group.drawChildren(Group.java:112)
at com.badlogic.gdx.scenes.scene2d.Group.draw(Group.java:58)
at com.badlogic.gdx.scenes.scene2d.Stage.draw(Stage.java:127)
at edu.udel.patc.screen.NoteListScreen.render(NoteListScreen.java:51)
at com.badlogic.gdx.Game.render(Game.java:46)
at com.badlogic.gdx.backends.lwjgl.LwjglApplication.mainLoop(LwjglApplication.java:206)
at com.badlogic.gdx.backends.lwjgl.LwjglApplication$1.run(LwjglApplication.java:114)
Thank you for any assistance!