Java tutorial
//package com.java2s; import java.util.Locale; import android.content.Context; public class Main { public static boolean isLocalCN(Context context) { Locale locale = context.getResources().getConfiguration().locale; String language = locale.getLanguage(); return language.equals("zh"); } }