Reputation: 1396
How could I open a view in Android Studio where all tasks that I've created using // TODO
comments would be displayed?
Upvotes: 109
Views: 37888
Reputation: 463
Also, you can press the Shift twice and write TODO in the search bar to display the TODO panel.
Upvotes: 17
Reputation: 2840
You can find this "view" on bottom left menu bar. Called TODO
(or)
Android Studio
go to View -> Tool Windows -> TODO to display the TODO panel
Anything marked
// TODO
should be visible in the list panel
Upvotes: 185