super.onCreate();
Thread worker = new Thread(){
public void run(){
try{
sock = new Socket("192.168.0.59",10527);
socket_out = new PrintWriter(sock.getOutputStream(), true);
}catch (Exception e){
e.printStackTrace();
}
}
};
worker.start();
}
}
● 앱 실행시 화면
- 591 -