TextView shadow 주기
<TextView
android:id="@+id/explain"
android:layout_below="@id/title"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:textStyle="bold"
android:textColor="#ffffff"
android:shadowColor="#000000"
android:shadowDx="2.0"
android:shadowDy="2.0"
android:shadowRadius="2.0"
android:textSize="15dp"
android:text="실행 중 입니다."/>
android:shadowColor : 색상
android:shadowRadius : 그림자 반경, 크기(값이 작을수록 선명)
android:shadowDx : 수평 방향 설정(x축 픽셀 단위)
android:shadowDy : 수직 방향 설정(y축 픽셀 단위)
'[미네르바's IT] > [미네르바's 안드로이드]' 카테고리의 다른 글
[안드로이드]안드로이드 android:rotation 효과 (0) | 2015.04.01 |
---|---|
[안드로이드]View의 getHeight, getWidth 하기 (0) | 2015.03.31 |
[안드로이드]ListAdapter 에 버튼 이벤트 처리 (0) | 2015.03.30 |
[안드로이드]안드로이드 녹음 기능 (0) | 2015.03.26 |
[안드로이드]PagerAdapter class (0) | 2015.03.26 |