안드로이드 스튜디오로 넘어오면서 mipmap 이라는 폴더를 처음보았다.

안에보니 drawable에 들어가 있어야할 안드로이드 기본 아이콘(ic-launcher)  들어가있었다.


drawable 과 mipmap의 차이점에 대해 알아보니


drawable

 For bitmap files (PNG, JPEG, or GIF), 9-Patch image files, and XML files that describe Drawable shapes or Drawable objects that contain multiple states (normal, pressed, or focused). See the Drawable resource type.


mipmap

 For app launcher icons. The Android system retains the resources in this folder (and density-specific folders such as mipmap-xxxhdpi) regardless of the screen resolution of the device where your app is installed. This behavior allows launcher apps to pick the best resolution icon for your app to display on the home screen. For more information about using the mipmap folders, see Managing Launcher Icons as mipmap Resources.


이렇게 설명되어 있는데 해석하자면


drawable 폴더는

이미지 자원을 위한 폴더이고


mipmap 폴더는

런처이미지 아이콘을 위한 폴더이다.



참조

http://sunphiz.me/wp/archives/1608

+ Recent posts