如何在 Android Studio 中获取崩溃的回溯信息?

How can I get the traceback of a crash in Android Studio?

当我的游戏(使用 LibGDX 编写)在 phone 或虚拟设备中崩溃时,我收到错误消息:at com.firstgame.game.firstGame.render(firstGame.java:20)

这会将我带到代码的第 20 行,

public void render() {
    this.render(); // important!
}

方法是。有什么办法可以追溯吗?

我不知道这是否有效,但你可以试试这个

public void render() {
    try {
        this.render();
    } catch(IOException e) {
        e.printStackTrace();
    }
}