Home | History | Annotate | Download | only in customlocale

Lines Matching refs:custom

49  * Displays the list of system locales as well as maintain a custom list of user
51 * a custom locale.
57 private static final String KEY_CUSTOM = "custom";
68 /** Menu item id for removing a custom locale */
71 /** List view displaying system and custom locales. */
113 // Get current custom locale list
129 Toast.makeText(this, "Added custom locale: " + locale, Toast.LENGTH_SHORT).show();
173 // Insert all custom locales
184 map.put(KEY_NAME, loc.getDisplayName() + " [Custom]");
185 // the presence of the "custom" key marks it as custom.
213 String custom = ((Map<String, String>) o).get(KEY_CUSTOM);
215 if (custom == null) {
219 menu.setHeaderTitle("Custom Locale");
250 // Get current custom locale list
254 Log.d(TAG, "Remove " + pendingLocale + " from custom locales: " + customLocales);
272 Toast.makeText(this, "Removed custom locale: " + pendingLocale, Toast.LENGTH_SHORT)