如何在TextView后面创建一个大的模糊阴影?

时间:2016-05-12 09:00:51

标签: android textview material-design shadow

我想在TextView下面创建一个非常大的软阴影。但是我无法使用足够大的阴影半径,因为如果我将其设置为超过25.0,Android将崩溃。

This is an example of the shadow I want to create

This is the largest shadow radius I'm able to create

上面的第一张图片来自我们的iOS应用,并根据我的需要显示文字下方的阴影。正如您所看到的,我无法在Android上重新创建此阴影效果。

阴影效果的XML样式目前是这样的:

<style name="TextViewShadowEffectSoft">
    <item name="android:shadowColor">#DD000000</item>
    <item name="android:shadowDx">0.0</item>
    <item name="android:shadowDy">0.0</item>
    <item name="android:shadowRadius">25.0</item>
</style>

在创建时膨胀到AutoResizeTextView(TextView的祖先):

 AutoResizeTextView title = (AutoResizeTextView) getActivity().getLayoutInflater().inflate(R.layout.text_shadow_soft, null);

text_shadow_soft.xml是:

com.app.models.AutoResizeTextView
style="@style/TextViewShadowEffectSoft" />

我的应用的最低API为19.

编辑:设置 android:shadowRadius 高于25.0的崩溃日志:

05-12 13:16:20.590 10679-10781/com.app E/rsC++: RS CPP error: Blur radius out of 0-25 pixel bound
05-12 13:16:20.593 10679-10781/com.app E/rsC++: RS CPP error (masked by previous error): Allocation creation failed
05-12 13:16:20.593 10679-10781/com.app E/rsC++: RS CPP error (masked by previous error): Allocation creation failed
05-12 13:16:20.593 10679-10781/com.app E/rsC++: RS CPP error (masked by previous error): Blur radius out of 0-25 pixel bound

                                                      --------- beginning of crash
05-12 13:16:20.594 10679-10781/com.app A/libc: Fatal signal 11 (SIGSEGV), code 1, fault addr 0x28 in tid 10781 (RenderThread)

欣赏所有想法和意见!

1 个答案:

答案 0 :(得分:3)

似乎与您的硬件相关的一些代码限制了它。因此,请使用软件渲染,将android:layerType="software"添加到您的视图中。

或代码使用

myView.setLayerType(View.LAYER_TYPE_SOFTWARE, null);

Documentation