Android/최적화 (2) 썸네일형 리스트형 안드로이드 스튜디오 Warning : It seems you're using 'idea.system.path' property... It seems you're using 'idea.system.path' property to specify the location of the caches directory. In 2020.1, default locations of application directories were changed. For compatibility, the IDE picked the old location of logs, but to avoid any ambiguity in the future (and to get rid of this warning) please set 'idea.log.path' property, too. Shift 키를 두번 눌러 Search Everywhere Dialog를 연다. Edit Cus.. [안드로이드/Java] AsyncTask 화면 넘김시 중단하는 법, http 요청 중단하는 법 http요청을 AsyncTask를 이용해 구현했는데요, 프래그먼트가 넘어갈때 요청을 중단하고 싶어서 cancle(true)를 사용했습니다. AsyncTask의 변수를 멤버변수로 두고, onStop()에서 cancle을 하여 진행중인 AsyncTask를 종료하려고 하였죠. @Override public void onStop() { super.onStop(); if(networkTask!=null) networkTask.cancel(true); } 그런데 한번에 해결될 일은 없죠 ㅎㅎㅎ 이것만으로는 중단이 안되더군요. 이유는 canel을 하면 onPostExecute로 넘어가지 않는것 뿐이고, doInBackGround는 전부 동작한다는 것. 또한 http요청은 계속 진행중이라는 것. 두가지 문제를 해결해야.. 이전 1 다음