如何在Android studio中运行编译调试stacktrace

时间:2016-06-29 16:04:41

标签: android

任何人都知道如何在 Android studio 中进行调试?

由于异常,我的程序无法运行,

app:compilejavac. 

它说使用debug or stacktrace for more info。请帮帮我。所有其他只运行当前项目的应用程序都有此错误。

The error message is that :
The error is that: /Users/hexinhao/AndroidStudioProjects/zhbj77/app/build/generated/source/r/debug/com/jikexueyuan/zhbj75/R.java:2431: 错误: 需要';'
        public static final int news_center-body_text=0x7f0c0089;
                                           ^
/Users/hexinhao/AndroidStudioProjects/zhbj77/app/build/generated/source/r/debug/com/jikexueyuan/zhbj75/R.java:2431: 错误: 需要<标识符>
        public static final int news_center-body_text=0x7f0c0089;
                                                     ^
2 个错误

:app:compileDebugJavaWithJavac FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':app:compileDebugJavaWithJavac'.
> Compilation failed; see the compiler error output for details.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output

1 个答案:

答案 0 :(得分:2)

news_center-body_text

-处有一个错误(箭头指向它)。

您的资源名称必须反映有效的Java变量规则,因此没有-个字符。将其更改为具有该特定元素的XML元素的ID中的_

相关说明 - 您希望findViewById(R.id.news_center-body_text)如何运作?

这将是你第一次提出错误的暗示。