()
| 103 | } |
| 104 | |
| 105 | private static TaskBar getInstance() { |
| 106 | if (INSTANCE == null) { |
| 107 | synchronized (TaskBar.class) { |
| 108 | if (INSTANCE == null) { |
| 109 | INSTANCE = new TaskBar(); |
| 110 | } |
| 111 | } |
| 112 | } |
| 113 | return INSTANCE; |
| 114 | } |
| 115 | |
| 116 | /** |
| 117 | * 响应托盘点击事件 |
no outgoing calls
no test coverage detected