Android examples for android.content:Context
get Current Language from Context
//package com.java2s; import android.content.Context; public class Main { public static String getCurrentLanguage(Context context) { String language = null;/*from w w w. j a v a2 s. co m*/ language = context.getResources().getConfiguration().locale .getCountry(); return language; } }