Android examples for android.content:Context
get Current Locale
import android.content.Context; public class Main{ public static String getCurrentLocale(Context context) { return context.getResources().getConfiguration().locale .getCountry();//from w ww . j av a2 s . c o m } }