我正在动态创建TextView并使用此处发布的方法为其设置阴影:Android - shadow on text?
但它不起作用。应用样式(将textSize项目设置为test,并且它可以工作),但不会出现阴影。
的TextView:
TextView tv = new TextView(this);
RelativeLayout.LayoutParams layoutPars = new RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
layoutPars.addRule(RelativeLayout.CENTER_VERTICAL);
tv.setTextColor(0xffffffff);
tv.setText(label);
tv.setTextSize(11);
tv.setTextAppearance(getApplicationContext(), R.style.BlackShadow);
风格:
<style name="BlackShadow">
<item name="android:shadowColor">#ff000000</item>
<item name="android:shadowRadius">1</item>
<item name="android:shadowDx">-1</item>
<item name="android:shadowDy">-1</item>
<item name="android:textSize">26dip</item>
</style>
我做错了什么?
答案 0 :(得分:46)
试试这个:
tv.setShadowLayer(1.5f, -1, 1, Color.LTGRAY);
来自文档
setShadowLayer(float radius, float dx, float dy, int shadowColor)
这将在主图层下方绘制阴影图层,具有指定的偏移和颜色以及模糊半径。