-
text관련과거...../개발일지 2010. 11. 22. 15:46-text의 shadow주기(샘플)-
android:shadowColor="#000"
android:shadowRadius="2.0"
-설명-Text Shadow
You can use three different attributes to customize the appearance of your text shadow:
- android:shadowColor Shadow color in the same format as textColor.
- android:shadowRadius Radius of the shadow specified as a floating point number.
- android:shadowDx The shadow’s horizontal offset specified as a floating point number.
- android:shadowDy The shadow’s vertical offset specified as a floating point number.
The floating point numbers don’t have a specific unit – they are merely arbitrary factors.
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="A light blue shadow."
- android:shadowColor="#00ccff"
- android:shadowRadius="1.5"
- android:shadowDx="1"
- android:shadowDy="1"
- />