How to map À, Á, Â, Ã, Ä, Å to A for more efficient search?
I am writing an Android application that need to search a set of strings with those symbols on some character.
In order to make search results more powerful, I would like to map À, Á, Â, Ã, Ä, Å to just A. For example, if the user's query is "Test" the following string should matches with query: Tȅst, Tȇst, Teśt, etc.
Is there any possible way of doing this in Android with API level >= 8?