Android

Android 폰트 그림자 shadow 효과 주기

클레인 2016. 3. 21.
반응형
androidfont.html

Android font style (shadow)

Android 플레이어에서 에이징 기능을 구현하는 중에 자막 기능에 대한 요구사항이 들어왔다.
텍스트를 흰색으로 표현하기에는 흰 배경에서 글씨가 먹히는 현상이 있어
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

shadowColor=”색상값”
shadowRadius =”1.5”(높을수록 그림자가 멀어짐)
shadowDx=”3”(1 -> 우,-1 -> 좌)
shadowDy=”3”(1 -> 아래,-1 -> 위)
Shadow Opacity=”70%”

레이아웃 예제

<TextView
        android:id="@+id/subtitletext"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textColor="#fff"
        android:textSize="22sp"
        android:maxLines="2"
        android:gravity="center"
        android:shadowColor="#000000"
        android:shadowDx="3"
        android:shadowDy="2"
        android:shadowRadius="1.5"
        android:text="자막 테스트 입니다./>
반응형

댓글