memory leak 썸네일형 리스트형 [ Android ] 메모리 누스 (memory leak) 발생 원인!! 이미지 버튼만 4개를 만든 페이지에서 계속 메모리 누수가 발생하여... 4~5번 실행하면 실행이 되지 않고오버 플로우가 발생!!!! 메모리가 누수되었을 경우 확인 부분 1. 전역변수나 클래스로 불러온 bitmap을 recycle함수로 초기화 시켰는지 확인2. Context는 되도록 applicationContext를 사용하도록3. 바로 이걸 하세요!!/* * Copyright (C) 2010 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * .. 더보기 [ Android ] Thumnails를 사용 시 메모리 오류. GridView를 이용하여 갤러리에 있는 이미지를 가져올 때 , Thumnails를 자주 사용하는데요. 용량도 적을 뿐더러, 알아서 알맞게 짤라주는 구글의 센스??ㅋㅋ 우선 제가 사용한 방법은 다음과 같습니다. GridView에서 사용하는 BaseAdapter 안에 존재하는 getView 속! public View getView(final int position, View convertView, ViewGroup parent) { RelativeLayout img_template = null; ImageView imgView = null; CheckBox cbCheck = null; Long id = mImgList.get(position); if( convertView == null){ // 기본 레이.. 더보기 이전 1 다음