Андроид приложение на libgdx не запускается

394
21 июля 2017, 02:15

Только начал осваивать libgdx, наскребал несколько статей по созданию меню и застрял на таком моменте, что приложение не запускается("Unfortunately, has stopped"). Код прилагается,я так понимаю, ошибка кроется там, хотел бы разобраться в проблеме, класс меню:

public class MenuScreen implements Screen {
FifkaFuferyu game;
TextButton switchFifer, switchInfo;
Skin skin;
private Label.LabelStyle labelStyle;
private Table table;
Stage stage;
Image img;
public MenuScreen(final FifkaFuferyu game) {
    this.game = game;
    stage = new Stage(new ScreenViewport());
    skin = new Skin(Gdx.files.internal("skin/rusty-robot-ui.json"));
    TextureAtlas buttonAtlas = new TextureAtlas(Gdx.files.internal("skin/rusty-robot-ui.atlas"));
    skin.addRegions(buttonAtlas);
    TextButton.TextButtonStyle textButtonStyle = new TextButton.TextButtonStyle();
    textButtonStyle.font = game.font;
    textButtonStyle.up = skin.getDrawable("button");
    textButtonStyle.down = skin.getDrawable("button-pressed");
    textButtonStyle.checked = skin.getDrawable("button");
labelStyle = new Label.LabelStyle();
labelStyle.font = game.font;
table = new Table();
table.setFillParent(true);
switchFifer = new TextButton("FiferHunt", textButtonStyle);
switchFifer.addListener(new ClickListener() {
    @Override
    public boolean touchDown(InputEvent event, float x, float y, int pointer, int button) {
        Gdx.input.vibrate(20);
        return true;
    }

    @Override
    public void touchUp(InputEvent event, float x, float y, int pointer, int button) {
        game.setScreen(new FiferHunt(game));
        dispose();
    }

});
switchInfo.addListener(new ClickListener(){
    @Override
    public boolean touchDown(InputEvent event, float x, float y, int 
pointer, int button) {
        Gdx.input.vibrate(20);
        return true;
    };
    @Override
    public void touchUp(InputEvent event, float x, float y, int pointer, 
int button) {
        game.setScreen(new InfoScreen(game));
        dispose();
    }
});
table.add(switchFifer);
table.row();
table.add(switchInfo);
stage.addActor(table);
Gdx.input.setInputProcessor(stage);
Gdx.input.setCatchBackKey(true);
}
@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();
}

Классы в которые можно перейти пусты, лишь принимают аргумент основного класса, сам основной класс:

public class FifkaFuferyu extends Game {
    public BitmapFont font, levels;
    private static final String FONT_CHARACTERS = "абвгдеёжзийклмнопрстуфхцчшщъыьэюяАБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789][_!$%#@|\\/?-+=()*&.;,{}\"´`'<>";
@Override
public void create() {

    FreeTypeFontGenerator generator = new FreeTypeFontGenerator(Gdx.files.internal("fonts/russoone.ttf"));
    FreeTypeFontGenerator.FreeTypeFontParameter param = new FreeTypeFontGenerator.FreeTypeFontParameter();
    param.size = Gdx.graphics.getHeight() / 18;
    param.characters = FONT_CHARACTERS;
    font = generator.generateFont(param);
    param.size = Gdx.graphics.getHeight() / 20;
    levels = generator.generateFont(param);
    font.setColor(Color.WHITE);
    levels.setColor(Color.WHITE);
    generator.dispose();
}
    @Override
    public void render() {
        this.setScreen(new MenuScreen(this));
    }
Answer 1

Не совсем понял, что такое стектрейс, но сегодня еще обнаружил 1 предупреждение, к сожалению полный нуб в подобном: Warning:[options] bootstrap class path not set in conjunction with -source 1.6

READ ALSO
JavaFX, не могу поставить иконку в TreeView

JavaFX, не могу поставить иконку в TreeView

Изображения видимы, но не ставятся на TreeItem:

462
checkout всех веток через интерфейс Idea

checkout всех веток через интерфейс Idea

Добрый день, коллегиВопрос следующего характера: имеется многомодульный Java-проект

262
Отображение полей в связе многие ко многим в Hibernate

Отображение полей в связе многие ко многим в Hibernate

У меня есть сущности "событие" и "участник"Связь многие-ко-многим

246