Android studio中突出显示的区域太多

时间:2017-01-14 06:21:02

标签: java android android-studio

Android工作室的新手,并尝试为我的作业编写一些行。但是我注意到有太多突出显示的区域,我不知道它们是什么,因为我的分配方法似乎是正确的。我附上照片以方便参考,希望有人能澄清。

IDE warnings

1 个答案:

答案 0 :(得分:0)

ChiefTwoPencils已经告诉你这个解决方案

Alt+Enter会向您显示修正突出显示的选项。尽量不要禁止警告或禁用检查,因为特别是你的情况他们可能有理由。

如果您在更新Android Studio之前可能已禁用检查(Lint)之前没有看到这些突出显示

在屏幕截图中,您基本上有两个问题:

  1. 第46,47,48行 - &gt; Method invocation might produce null pointer exception变量btnInterfacebtnVariablebtnInner可能为空。您可能没有初始化这些变量(btnInterface = <btnInterface class> findViewById(...)
  2. 第90和93行 - &gt;硬编码的字符串。 Use string resources
  3. 希望你是Android新手,因为那些不是你应该抱怨的东西