Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- cubic-bezier
- webpack
- Transition
- 자바스크립트 #javascript #렌더링 #렌더링순서
- virtual dom
- jest
- frontend
- 성능 최적화
- 세션스토리지
- vuetify
- NavigationDuplicated
- 장고
- 렌더링 최적화
- 주니어 개발자
- Router
- 안드로이드
- lazy loading
- DOM
- vue #vue.js #font #web-font
- Django
- 뷰
- vue-router
- 예외처리
- 프론트엔드
- vue.js
- css
- 세션
- 라우터
- VUE
- 로컬스토리지
Archives
- Today
- Total
한준호
(간단)안드로이드 고화질 이미지 에러 본문
728x90
갤러리에 있는 사진을 선택하여 이미지 뷰에 올리는 작업 중 저화질 사진은 잘 되는데 고화질 사진에 대해선 다음과 같이 에러가 발생했다.
Failed to allocate a 63701004 byte allocation with 16772768 free bytes and 55MB until OOM
대충 용량이 커서 메모리가 부족하다는 의미인데
Manifest 파일에서 android:largeHeap="true"를 추가해준다.
<activity
android:name=".DetectorActivity"
android:label="@string/tfe_od_app_name"
android:largeHeap="true"
android:screenOrientation="portrait" />
728x90
'애플리케이션 > 안드로이드' 카테고리의 다른 글
안드로이드 웹서버 통신 okhttp3 (0) | 2021.04.23 |
---|---|
안드로이드 에뮬레이터에서 로컬호스트 접속(서버 통신) (0) | 2021.04.19 |
Comments