Issue
I am spell checking my project which is developed with android studio. I have multiple files to check spelling. I mean multiple string resource files and a few layouts(I know its a bad practive to have strings directly in layout, but had a little usage and previously developed).
Is there a way to find the find only the misspelled words? (like we do find a word in whole project). I searched a lot and didnt find any solution.
thanks in advance
Note : My project is developed only for English. I don't use any other languages
Solution
If I understood you correctly, then you want to find the words, that you misspelled (write incorrectly) in your project.
To do this you can:
- In main menu of Android Studio: Analyze - Inspect code - select Whole project - click OK
- In the analyse results find Spelling
- Inside it there will typically be 1 sub-item - Typo
- Inside it you will find all found possible typos (misspelling) over the project including method\variable names as well as typos in the string resources.
- String resource typos can be found under the module name folders.
Answered By - Vladyslav Matviienko
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.