3
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/am"
android:orientation="vertical" >

<RelativeLayout
    android:id="@+id/relativeLayout1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:text="Admissions"
        android:layout_marginLeft="14dp"            
        android:textColor="#33b5e5"
        android:shadowColor="#ffffff"
        android:textSize="28dp"
        android:shadowDx="4"
        android:shadowDy="4"
        android:textAppearance="?android:attr/textAppearanceLarge"
    />
</RelativeLayout>

</LinearLayout>

这是我的代码..我正在尝试为我的文字赋予雕刻效果..所以我将白色阴影应用于蓝色类颜色..但没有阴影效果..告诉我该怎么做..

4

1 回答 1

7

你错过了:

android:shadowRadius="5"

没有半径就行不通。

于 2012-05-11T08:14:13.123 回答