Button dar =(Button)findViewById(R.id.dr);
    dar.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view)
        {
            String languageToLoad  = "fr"; // your language
            Locale locale = new Locale("fr");
            Locale.setDefault(locale);
           Configuration config = new Configuration();
           config.locale = locale;
            getBaseContext().getResources().updateConfiguration(config, getBaseContext().getResources().getDisplayMetrics());           
            Intent ints =new Intent(getApplication(),MainMenu.class);
            startActivity(ints);
        }
    });
why going to other page my values-fr is loading translations for french. i observe that it change to right side for right side lang but not translating the buttons text
 
     
    