TextView添加陰影

 


 

Valuse.styles.xml
<resources>

<style name="StyleBarTitle">
        <item name="android:layout_gravity">center_vertical</item>
        <item name="android:layout_width">0dp</item>
        <item name="android:layout_height">wrap_content</item>
        <item name="android:layout_weight">1</item>
        <item name="android:gravity">center_horizontal</item>
        <item name="android:textSize">50dip</item>
        <item name="android:textStyle">bold</item>
        <item name="android:textColor">#000000</item>
        <!-- TextView顏色 -->
        <item name="android:shadowColor">#BEBEBE</item>
        <!-- 陰影顏色 -->
        <item name="android:shadowDx">15</item>
        <!-- 陰影的水平偏移量 -->
        <item name="android:shadowDy">10</item>
        <!-- 陰影垂直偏移量 -->
        <item name="android:shadowRadius">5</item>
        <!-- 陰影的範圍-->
        <item name="android:background">@null</item>
    </style>
</resources> 

 

activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <TextView 
         android:id="@+id/txBarTitle1"
      android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        style="@style/StyleBarTitle"
       
        android:text="陰影效果~~~" />

</RelativeLayout>

 

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 小Chiu 的頭像
    小Chiu

    Cuiu's Home

    小Chiu 發表在 痞客邦 留言(1) 人氣()