在我的事件登录Intellij IDEA 2016中,我曾经看到过这样的信息:
取消链接的Gradle项目?
,这也将启用Gradle工具窗口 不希望再次看到该项目的消息:Import Gradle project。
在某些时候,我点击了“按此处”链接,表示我不想再看到该消息。从那以后,我决定再次看到它。
如何开始看到我选择不再看到的此事件日志消息?
答案 0 :(得分:1)
您可以从(显然)Notifications
设置窗口重新启用通知气球弹出窗口和日志,您可以(至少)以两种方式打开该窗口:
1)在Event log
窗口中点击设置按钮
2)File
- > Settings
- > Appearance & behaviour
- > Notifications
答案 1 :(得分:0)
我刚刚尝试了有关(Unlinked Gradle Project?
)的具体通知。 我发现重新启用通知的唯一方法是删除项目中的.idea
文件夹,然后在Intellij中重新打开项目。
其他通知,例如Maven: non-managed pom.xml
按预期工作,因此此错误特定于Unlinked Gradle Project?
通知。
在此版本中,这似乎是Intellij Idea中的一个错误:
IntelliJ IDEA 2016.2.5
Build #IU-162.2228.15, built on October 14, 2016
JRE: 1.8.0_112-release-287-b2 x86_64
JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
我提出了一个问题:https://youtrack.jetbrains.com/issue/IDEA-162936
另外,我发现这些通知设置不存储在项目特定文件中。在OSX上,此文件为~/Library/Preferences/IntelliJIdea2016.2/options/notifications.xml
,在Windows上,它将根据this驻留在文件夹中。
当我测试此通知时,这些是我的文件内容:
<application>
<component name="NotificationConfiguration">
<notification groupId="Gradle Notification Group" shouldReadAloud="true" />
<notification groupId="Maven: non-managed pom.xml" displayType="STICKY_BALLOON" shouldLog="false" />
<notification groupId="Project Startup Tasks Messages" displayType="STICKY_BALLOON" />
</component>
</application>
我注意到更改了“Gradle Notification Group”的弹出窗口类型&#39;正确更新~/Library/Preferences/IntelliJIdea2016.2/options/notifications.xml
,但即使Popup类型为“BALLOON&#39;或者&#39; STICKY_BALLOON&#39;,它不会导致Intellij重新通知用户Unlinked gradle project
。