是的,setShadowLayer()
方法可以应用于自定义视图。在自定义视图中,你可以使用View
类的setLayerType()
方法来设置阴影层类型,并使用setShadowLayer()
方法来设置阴影层的参数。
以下是一个简单的示例,演示了如何在自定义视图中使用setShadowLayer()
方法:
public class CustomView extends View { public CustomView(Context context) { super(context); init(); } public CustomView(Context context, @Nullable AttributeSet attrs) { super(context, attrs); init(); } public CustomView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); init(); } private void init() { // 设置阴影层类型为阴影偏移 setLayerType(View.LAYER_TYPE_OFFSET, null); // 设置阴影层的参数 setShadowLayer(10, 0, 0, Color.BLACK); } }
在这个示例中,我们创建了一个名为CustomView
的自定义视图类,并在其构造函数中调用了init()
方法。在init()
方法中,我们首先使用setLayerType()
方法将阴影层类型设置为阴影偏移,然后使用setShadowLayer()
方法设置了阴影层的偏移量、模糊半径和颜色。