[for Android] 글씨에 효과 넣기_Text Shadows

2011. 8. 8. 14:27GUI 가벼운 이야기
알 수 없는 사용자

[원문]http://blog.stylingandroid.com/archives/378

GUI를 하다보면 개발상황을 고려한 디자인을 해야할때가 많습니다.
포토샵에서는 되는데 개발 코드에서는 적용이 힘든 경우가 종종 있더군요.

그중 가장 많은 고민을 하게 되는것이 텍스트 이펙트 입니다.
다양한 화면 혹은 좀더 눈에 띄는 효과를 위해 디자이너는 shadow 효과를 많이 사용하게 되는데요.

포토샵처럼 텍스트에 이펙트 효과를 넣을 수 있는 자바 소스의 글을 포스팅 합니다.
정확한 이해를 위해선 원문을 읽어보시길 바랍니다.

Text shadows require four parameters:

1.The shadow colour: what colour the shadow will be
2.The X offset: where the shadow is positioned horizontally relative to the text
3.The Y offset: where the shadow is positioned vertically relative to the text
4.The radius: How much the edges of the shadow will be blurred

총 4가지 변수를 입력할 수 있습니다.

GUI 가이드 표시는


Shadow Color="#000000"
Shadow Radius="1.5"(높을 수록 shadow거리가 멀어짐)
Shadow Dx="3"(1~우,-1~좌)
Shadow Dy="3"(1~아래,-1~위)
Shadow Opacity="70%"

입니다.

[참고##프로그래밍##]