티스토리 뷰

치수

XML에서 씨는 치수에 대한 설명입니다. 치수는 측정의 단위라고 할 수 있겠지요. 예를 들면 10px, 2in, 5sp 등등. 아래의 측정 단위가 안드로이드에서 제공됩니다.

dp(==dip)
Density-Independent Pixels(밀도 독립 픽셀). 스크린의 물리적 밀도에 기반을 한 압축적인 단위입니다. 이 단위는 160 dpi(dots per inch) screen에 상대적입니다.
=>즉, 160dpi 스크린에서의 1px이 1dp라고 생각하시면 됩니다. 이름에서 밀도에 독립적이라고 밝힌 것과 같이, 스크린의 dpi가 다른 기계에서도 1dp의 실제 크기는 똑같다고 볼 수 있습니다.

sp
Scale-independent Pixels(배육 독립 픽셀). dp와 비슷합니다만, 사용자의 font size에 비례하게 됩니다. 이것은 font size의 크기로 쓰기를 추천합니다.
=>저는 다른 사이즈들은 대개 dp로 쓰고, 폰트 사이즈만 sp로 씁니다. 사용자가 지정해놓은 font size에 따라서 글자 크기가 변하나 봅니다.

pt
Points-스크린 사이즈의 1/72를 1pt라고 합니다.
=>스크린 사이즈에 비례해서 작업을 할 때 유용하다고 할 수 있습니다.

px
픽셀.

mm
밀리미터

in
인치

XML 작업할 때 항상 단위가 헷갈리더라구요.

특히나 지금 작업하고 있는 앱이 길이 측정 관련 앱이라서 정리가 필요하다고 생각했습니다.

좋은 정보 되시고, 굿 프로그래밍 되시길 바라요!



Dimension

A dimension value defined in XML. A dimension is specified with a number followed by a unit of measure. For example: 10px, 2in, 5sp. The following units of measure are supported by Android:

dp
Density-independent Pixels - An abstract unit that is based on the physical density of the screen. These units are relative to a 160 dpi (dots per inch) screen, on which 1dp is roughly equal to 1px. When running on a higher density screen, the number of pixels used to draw 1dp is scaled up by a factor appropriate for the screen's dpi. Likewise, when on a lower density screen, the number of pixels used for 1dp is scaled down. The ratio of dp-to-pixel will change with the screen density, but not necessarily in direct proportion. Using dp units (instead of px units) is a simple solution to making the view dimensions in your layout resize properly for different screen densities. In other words, it provides consistency for the real-world sizes of your UI elements across different devices.
sp
Scale-independent Pixels - This is like the dp unit, but it is also scaled by the user's font size preference. It is recommend you use this unit when specifying font sizes, so they will be adjusted for both the screen density and the user's preference.
pt
Points - 1/72 of an inch based on the physical size of the screen.
px
Pixels - Corresponds to actual pixels on the screen. This unit of measure is not recommended because the actual representation can vary across devices; each devices may have a different number of pixels per inch and may have more or fewer total pixels available on the screen.
mm
Millimeters - Based on the physical size of the screen.
in
Inches - Based on the physical size of the screen.


댓글

파트너스 활동을 통해 일정액의 수수료를 제공받을 수 있음



Total
Today
Yesterday
최근에 달린 댓글