public void notify (String tag, int id, Notification notification)
	
		
			Post a notification to be shown in the status bar. If a notification with the same tag and id has already been posted by your application and has not yet been canceled, it will be replaced by the updated information.
	 
	
		
			Parameters
		
			
				
					| tag | A string identifier for this notification. May be null. | 
				
					| id | An identifier for this notification. The pair (tag, id) must be unique within your application. | 
				
					| notification | A Notificationobject describing what to show the user. Must not be null. | 
			
		
	 
 
	 
	단순히 텍스트만 바꿔주고 싶으신거라면 해당 노티에 id 와 tag값을 기억했다가
	위 API를 이용해서 노티피케이션을 다시 noify() 시키시면 됩니다.
	기존에 없는 노티피케이션은 상태바에 띄워주고 ,
	기존에 있는 노티피케이션이라면 상태를 업데이트 시켜준다고
	나와있네요