Android examples for Internationalization:Locale
get Current Country Language
//package com.java2s; import android.content.Context; public class Main { public static String getCurCountryLan(Context context) { return context.getResources().getConfiguration().locale .getLanguage()//from w ww. j av a2 s .c o m + "-" + context.getResources().getConfiguration().locale .getCountry(); } }