개발자/Android20 안드로이드에서 TCP/IP 통신 (스레드 포함) class MessageSender extends Thread { public void run() { String message = null; PrintWriter out = null; BufferedWriter bw = null; OutputStream os = null; OutputStreamWriter osw = null; while (runningMessageSender) { if (mClientSocket != null && out == null) { try { os = mClientSocket.getOutputStream(); osw = new OutputStreamWriter(os); bw = new BufferedWriter(osw); out = new PrintWriter(bw, true.. 2011. 5. 26. Notification 클래스에 대한 정보 요즘에 졸업작품 작업을 하면서 새롭게 사용하고 있는 Android !! 작업을 하는 도중에 저장용으로도 글을 많이 올리겠지만 나름 자료를 검색하면서 애를 먹었던 부분도 간간히 시간이 된다면 포스팅 할 예정이다. 안드로이드를 접하면서 다른 애 먹으면서 찾아가는 부분들도 있었지만 우선적으로는 Notification 을 이용하여 상태바에 아이콘도 띄우고 알림 내용도 띄우는 부분을 할 것이다. Notification 클래스에 대한 부분을 일단 설명하겠습니다. 생성자에 대한 개요 Notification (String type, Object source, long sequenceNumber) Notification 객체를 작성합니다. Notification (String type, Object source, lon.. 2011. 5. 23. 이전 1 2 3 4 다음