是的,Android Spinner樣式可以設置陰影效果。可以使用XML屬性android:shadowColor
、android:shadowDx
、android:shadowDy
和android:shadowRadius
來實現陰影效果。例如:
<Spinner
android:id="@+id/spinner"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/spinner_background"
android:shadowColor="#000000"
android:shadowDx="3"
android:shadowDy="3"
android:shadowRadius="3"
/>
在上面的例子中,設置了陰影顏色為黑色、水平偏移為3個像素、垂直偏移為3個像素、陰影半徑為3個像素。通過調整這些屬性的值可以實現不同的陰影效果。