How to find usages of Strings.xml in Android Studio?

android, android-studio, intellij-idea, localization

Solution

Right-click on the resource name in the strings.xml (in your case, on `Hello`) or on the id in the code and select Find usages. This will give you the usages of this res.

OSX Command-Option-F7 Windows Alt + F7

Problem

You can get "Show usages of field xyz" with the help of cursor & command (in Mac) in Java,How to find where specific xml tag has been used? For example how to find usage of Hello key: `<string name="Hello">Hello world</string>`

Original source

Related problems