As we know already e.g. we cannot change res folder values and files at runtime,
I am working on an app, in which we are supporting more than 25 languag
Here Sqlite Option is better for your condition .
Following is the structure of data base table (eg. LangTable)
--------- ---------- -------- -------- --------- -------
langKey Locale_En Local_hn Local_Fr.......................n
---------- ---------- --------- -------- ------ ------- ---
btnOk ok ..... ...... ..........
btnCancel cancel ......... .... .... .......
Now here is method for get Relevant local string
public String getResource(String key, String local){
String value = "";
value = Select local from LangTable where langKey = 'key';
return value;
}