updatePeriodMillis에 시간만큼 업데이트되지만... 액티비티에서 수정한 내용을 바로 위젯에서 적용시키고 싶을 때, onReceive를 이용하면 된다 // 액티비티 이벤트 Intent widgetIntent = new Intent(this, SmartIdWidget.class); widgetIntent.setAction(AppWidgetManager.ACTION_APPWIDGET_UPDATE); // 위젯 업데이트 액션 this.sendBroadcast(widgetIntent); // 브로드캐스팅 widget private RemoteViews views; // 위젯 업데이트 메소드 public static void pushWidgetUpdate(Context context, RemoteVie..