I want to change all files in project that contains below string
MainActivity.getResourceString(lang + "key" , abs)
to
getResource().getString(R.string.key)
How can I do it?
I should say that "key"
and abs
is variable string in each files.
I saw this solution but I don't know how to do this problem by it.