亚美尼亚语和索马里语言/语言环境是否支持Android和IOS?

时间:2014-04-02 06:18:44

标签: android ios localization locale

我的申请中要求亚美尼亚语和索马里语都支持android和IOS,但我找不到任何与亚美尼亚语和索马里语有关的文件。如果有人知道这个,请帮助我。

提前感谢。

1 个答案:

答案 0 :(得分:1)

 please follow below link it may be use full

http://snowpard-android.blogspot.in/2013/03/programmatically-change-language-in.html

第1步:   为亚美尼亚人创建价值文件夹(values-hy)   例如:           

 <string name="app_name">Հղրդգրթ</string>
 <string name="hello_world">Պարամետրեր</string>

第2步:根据您的要求,您应该在下面写下代码

eg: mtextView1.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View arg0) {
            // TODO Auto-generated method stub
            Locale locale = new Locale("hy");
            Locale.setDefault(locale);
            Configuration config = new Configuration();
            config.locale = locale;
            getBaseContext().getResources().updateConfiguration(config,
  getBaseContext().getResources().getDisplayMetrics());
            updateText();
        }
    });
  public void updateText(){
 mtextView1.setText(R.string.hello_world);
  }