안드로이드 개발 질문/답변
(글 수 45,052)
왜 이런지 모르겠습니다;;
일단 통지코드는 이렇습니다
mNotiManager = (NotificationManager) context
.getSystemService(context.NOTIFICATION_SERVICE);
noti = new Notification(R.drawable.ic_launcher, qtDTO.getTitle(),
System.currentTimeMillis());
PendingIntent qtPIntent = PendingIntent.getActivity(context, 0,
qtIntent, 0);
noti.setLatestEventInfo(context, "Quiet Time...", qtDTO.getTitle(),
qtPIntent);
mNotiManager.notify(Constant.ETC.THAMES_NOTI_ID, noti);
근데 통지를 날리기만하면 그냥 상단바에 통지만 띄워야하는데 자꾸 화면이 왼쪽으로 밀려서 검은화면이 보였다가 다시 보여지게됩니다;
왜 이런현상이 나타나는걸까요 ㅠ