Skip to content Skip to sidebar Skip to footer

'Find All' In Android Studio

New to Android Studio and I wanted to find all instances of something across all java files. I read that shift+shift would bring up a 'Search Everywhere' box but it doesn't work. Y

Solution 1:

Try using Ctrl + Shift + F.

You can also try Ctrl + Shift + R.


Solution 2:

In Android Studio: version-1.3.1 -- for MAC

  1. Do the following for finding anything in the project: command + shift + F

  2. Do the following for finding anything and then Replacing in the project: command + shift + R.

Replace dialog


Solution 3:

shift+shift is used for searching Classes, Files, Symbols, Actions but not for searching in source files

To find something in code use

//global
Edit -> Find -> Find in Path...
//or
Command + Shift + F

//local
Edit -> Find -> Find...
//or
Command + F

Solution 4:

For me I just wanted to find lines where a particular word was used: so for that Shortcut: (Mac: cmnd+F /).

enter image description here


Post a Comment for "'Find All' In Android Studio"