問題1:實例化一個Thread並start()以後,等待這個線程isAlive()==false 時再次去start()該線程時會報以下錯誤:the thread already started;網絡
解決方法:每次start()線程以前都要從新實例化一次;ui
問題2:使用HttpURlConnection.getResponseCode()方法時報錯:NetMainThreadException;spa
解決方法:在主線程中不能進行網絡請求,另起一個線程才能夠;線程
問題3:在new AlertDialog.builder().setView(view)後,第二次顯示該Dialog時報錯:the view is 。。。。must remove first。。。。;rem
解決方法:每次;new AlertDialog.builder().setView(view)以前要從新inflate這個view;get