in my app when i click a button i am opening an Alert Dialog builder. My code is as follows
AlertDialog.Builder builder = new AlertDialog.Builder(BannerImage.this);
final CharSequence[] items = {"Skip", "video", "Audio", "Games"};
builder.setTitle(" Funn ");
here instead of typing the items name here i want to add those name from R.strings.xml
file
but it shows some errors, as my user changes the locale i want to show different language for that i need to do like this. How to add the values from strings file...