文本出现,@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" />
答案 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" />
是的,编辑器没有显示阴影,但它也应该显示它不受支持的说明。