리얼라이져의 마케팅, 개발, 창업 블로그

drwable과 mipmap 차이 본문

IT/안드로이드

drwable과 mipmap 차이

nadadhl 2023. 9. 1. 22:52
728x90

간단하게 말하자면,

drwable 의 경우는 일반적인 이미지 자원을 위한 폴더

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.

Comments