Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 472
Mantas Avatar asked Apr 30 '14 09:04

Mantas


People also ask

What is the use of Todo in Android Studio?

Let us see what is there in the application: You can add the tasks that are to be done in a descriptive way. You will be able to add as many tasks as you have. Once the task is completed, you will be able to remove it by clicking on “Task Completed” button.

How do you add a TODO comment on flutter?

To create a TODO comment Place the caret where you want to create a TODO item and add a comment, for example, by pressing Ctrl+/ , then type TODO or FIXME , and then type your note.


1 Answers

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

like image 124
Neige Avatar answered Dec 06 '22 06:12

Neige