我有要显示阴影的textview,我将ShadowShadowX和ShadowY和ShadowRadius的参数放在下面的XML代码中
<TextView
android:id="@+id/Title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:shadowDx="1"
android:shadowDy="1"
android:shadowColor="#e41919"
android:shadowRadius="0.6"
android:text="@string/nader"
android:textColor="#e1e1e1"
android:textStyle="bold" />
但我不知道Shadow X,Shadow Y和Shadow Radius如何在背景中工作
以及android如何从概念上评估这些参数值?
android:shadowDx – specifies the X-axis offset of shadow. You can give -/+ values, where -Dx draws a shadow on the left of text and +Dx on the right
android:shadowDy – it specifies the Y-axis offset of shadow. -Dy specifies a shadow above the text and +Dy specifies below the text.
android:shadowRadius – specifies how much the shadow should be blurred at the edges. Provide a small value if shadow needs to be prominent.
android如何在不指定任何格式的情况下逻辑上使用上述属性值,请向我发送有关这些属性的任何教程网址
dp
pixel
如果您有关于shadow参数的任何教程和参考,请帮助并向我发送有关Shadow这些属性的Blogs URL教程
解决方法:
请参考以下链接:
http://android–code.blogspot.in/2015/05/android-textview-text-shadow.html
您必须在yout xml文件中使用3-4个textview,然后为每个textview更改shadowDx,shadowDy和阴影的颜色,然后才能观察到差异.