반응형
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="자막 테스트 입니다./>
반응형
'Android' 카테고리의 다른 글
android keystore sha 키 구하기 (안드로이드 키스토어 fingerprint 찾기) (0) | 2017.03.29 |
---|---|
갤럭시 Knox 사용과 장단점 (0) | 2017.01.02 |
SMI 파일 포멧 (0) | 2016.03.21 |
Android Handler Delay leftTime 남은시간 구하기 (0) | 2016.03.03 |
Android Invisible Button Action 투명 버튼 클릭 (0) | 2016.02.12 |
댓글