마스터Q&A 안드로이드는 안드로이드 개발자들의 질문과 답변을 위한 지식 커뮤니티 사이트입니다. 안드로이드펍에서 운영하고 있습니다. [사용법, 운영진]

시간 표시나오는 맨위에 알림은 어떠한 방법으로..

0 추천
일반적으로 공지할 내용이나 알림 내용이 있으면 GCM으로 보내는데요

카카오톡이나 앱들 보면 메세지가 도착하면 맨위에 시간표시되는 라인(와이파이도 나오고 안테나 표시도 나오는 부분)

에 공지가 뜨거든요.

 

이건 뭐라고 부르며 어떻게 처리하는건가요?

공부하면 공부할 수록 배워야할게 많아지네요 ㅠㅜ..
초봉초봉 (3,480 포인트) 님이 2014년 3월 11일 질문

2개의 답변

+1 추천
notification 말하는거 같네요~
크라시엘 (2,320 포인트) 님이 2014년 3월 12일 답변
0 추천
  mNM = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
 mShowText = "메세지.";
 
   public void showNotification() {
        // In this sample, we'll use the same text for the ticker and the expanded notification
        CharSequence text = mShowText;
 
        // Set the icon, scrolling text and timestamp
        Notification notification = new Notification(R.drawable.abc_btn_check_to_on_mtrl_000, text, System.currentTimeMillis());
 
        // The PendingIntent to launch our activity if the user selects this notification
        PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
                new Intent(this, MainActivity.class), 0);
 
        // Set the info for the views that show in the notification panel.
        notification.setLatestEventInfo(this, mShowText, text, contentIntent);
 
        // Send the notification.
        mNM.notify(R.drawable.abc_btn_check_to_on_mtrl_000, notification);
    }
스마일리 (540 포인트) 님이 2015년 6월 10일 답변
...