有简单的 xml 布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center"
android:padding="5dp" >
<Button
android:padding="15dp"
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:shadowColor="@android:color/black"
android:shadowDy="10"
android:shadowRadius="5"
android:text="Button" />
</LinearLayout>
当我将其设置为活动的内容视图时,我在按钮文本下方看到黑色阴影。但是如果我改成android:shadowColor="@android:color/black"
-android:shadowColor="@android:color/white"
我再也看不到阴影了。为什么?