Mantas
Mantas

Reputation: 1396

How to see all TODO tasks in Android Studio?

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

Answers (2)

Georgios Tsaprazlis
Georgios Tsaprazlis

Reputation: 463

Also, you can press the Shift twice and write TODO in the search bar to display the TODO panel.

Upvotes: 17

Neige
Neige

Reputation: 2840

You can find this "view" on bottom left menu bar. Called TODO

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

enter image description here

Upvotes: 185

Related Questions