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

foreground notification 변경 문의 [closed]

0 추천
foreground시 notification 변경이 안되나요?

 

 public int onStartCommand(Intent intent, int flags, int startId) {
  Log.i(TAG, " +++ onStartCommand Service +++");

  NotificationManager nm = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
        startForeground(NOTIFICATION_ID,new Notification());
        Notification notification;

     notification = new Notification.Builder(getApplicationContext())
         .setContentTitle("물병")
         .setContentText("블루투스 On")
         .build();
     nm.notify(NOTIFICATION_ID, notification);

return Service.START_REDELIVER_INTENT; //전화 번호 값 유지하기 위해서
 }
질문을 종료한 이유: 찾아냄
쿠쿠부다스 (6,470 포인트) 님이 2016년 1월 11일 질문
쿠쿠부다스님이 2016년 1월 11일 closed
...