android 首界面socket放在线程里了,但是onCreate方法里没有启用这个线程为什么socket也连接上了?
android 首界面socket放在线程里了,但是onCreate方法里没有启用这个线程为什么socket也连接上了?
下面这个线程根本没在oncreate里调用。
Runnable socketThread = new Runnable() {
public void run() {
// TODO Auto-generated method stub
Singleton.getSocket(ip,port);
//System.out.println("homeActivity socket方法,服务器已连接 ");
}
};
shikii
11 years, 5 months ago