Lines Matching refs:configKey
598 for (String configKey : config.keySet()) {
599 if (!config.containsKey(configKey)) {
602 int color = config.getInt(configKey);
604 Log.d(TAG, "Found watch face config key: " + configKey + " -> "
607 if (updateUiForKey(configKey, color)) {
622 private boolean updateUiForKey(String configKey, int color) {
623 if (configKey.equals(DigitalWatchFaceUtil.KEY_BACKGROUND_COLOR)) {
625 } else if (configKey.equals(DigitalWatchFaceUtil.KEY_HOURS_COLOR)) {
627 } else if (configKey.equals(DigitalWatchFaceUtil.KEY_MINUTES_COLOR)) {
629 } else if (configKey.equals(DigitalWatchFaceUtil.KEY_SECONDS_COLOR)) {
632 Log.w(TAG, "Ignoring unknown config key: " + configKey);