Home | History | Annotate | Download | only in customlocale2

Lines Matching refs:intent

22 import android.content.Intent;

33 * $ adb shell am broadcast -a com.android.intent.action.SET_LOCALE \
34 * --es com.android.intent.extra.LOCALE en_US
42 /** Intent action that triggers this receiver. */
43 public static final String ACTION_SET_LOCALE = "com.android.intent.action.SET_LOCALE";
45 public static final String EXTRA_LOCALE = "com.android.intent.extra.LOCALE";
48 public void onReceive(Context context, Intent intent) {
50 if (intent == null || ! ACTION_SET_LOCALE.equals(intent.getAction())) {
52 Log.d(TAG, "Invalid intent: " + (intent == null ? "null" : intent.toString()));
57 String locale = intent.getStringExtra(EXTRA_LOCALE);