阴影为什么不出现?

时间:2012-05-20 03:42:53

标签: android xml shadow

文本出现,@color/blue在代码的其他地方没问题,还有什么阻止阴影出现?我已经为shadowDx&尝试了1,10和100的值。 shadowDy以及shadowRadius。阴影不会出现在编辑器中(显然是TextView shadow not showing up in preview - although working on real device}),也不会出现在我的手机上,这是我的测试设备。

    <TextView
        android:id="@+id/shadow_text"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="i should be shadowed ..."
        android:textColor="@android:color/white"
        android:shadowColor="@color/blue"
        android:shadowRadius="2"
        android:shadowDx="1"
        android:shadowDy="1"
        android:textSize="@dimen/text" />

1 个答案:

答案 0 :(得分:9)

如果我使用浮点值,它只适用于我。试试这个:

 <TextView
        android:id="@+id/shadow_text"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="i should be shadowed ..."
        android:textColor="@android:color/white"
        android:shadowColor="@color/blue"
        android:shadowRadius="2.0"
        android:shadowDx="1.0"
        android:shadowDy="1.0"
        android:textSize="@dimen/text" />

是的,编辑器没有显示阴影,但它也应该显示它不受支持的说明。