Is it possible to restrict the language in an android application, i.e When user change language i want only English and French languages needs to get effected.Problem is when user select the Dutch the Options Menu names are in in English but MORE(System generated menu option if there are more options to display) is in Dutch.I want More to be in English.
Please Help
NITZ
Is it possible to restrict the language in an android application, i.e When user
Share
The word “More” that shows up in the options when you press the menu key is a system generated string so it will match whatever the system language is regardless of what your app supports.
If you want the word “More” to show up in either French or English, you’ll have to cut down the number of menu items you have so that the system doesn’t show it, then manually add a “More” option. The more option you add manually won’t automatically show the rest of the menu options so you’d have to move them to their own context menu.