서비스에서 주기적으로 날리는 메세지를 위젯이 수신해서 자신의 모양을 바꾸는 걸 만들고 있습니다.

다른건 다 되는데 위젯의 모양이 바뀌는 순간에 아래와 같이 요상한 이미지가 중간에 번쩍하고 나타난뒤 바뀝니다.

소스에는 저런게 없는데 왜 이런 현상이 발생하는 걸까요?

아래 중간에 시커먼 피아노같은건 도대체 뭘까요?

change.jpg 

위젯 수정부분은 아래와 같습니다.

public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds){
    RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.card);
    views.setTextViewText(R.id.word1, word1);
    views.setTextViewText(R.id.word2, word3);
    views.setTextViewText(R.id.word3, word3);
    Intent intent = new Intent(context, CarWidget.class);
    PendingIntent pintent = PendingIntent.getActivity(context, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
    views.setOnClickPendingIntent(R.id.Box, pintent);
    appWidgetManager.updateAppWidget(appWidgetIds, views);
}