10

我有这个只有一个按钮的最小的 Android Studio 项目。我为按钮分配了一个阴影:

android:elevation="3dp"
android:translationZ="3dp"
android:stateListAnimator="@null"

我在 Android Studio Design 选项卡中看到了阴影。但我也在 xml 编辑器中收到警告

属性 ... 仅用于 API 级别 21 及更高级别(当前最小值为 16)

实际上,按钮阴影仅在带有 的模拟器中显示API level 21 or higher,并且在带有 的模拟器中显示为平面,完全没有阴影API level lower than 21

所以具体的问题是,如何在API's lower than 21.

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <LinearLayout
        android:id="@+id/main_layout"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:weightSum="1">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_margin="20dp"
            android:layout_weight="2.24">

            <Button
                android:id="@+id/my_button"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerHorizontal="true"
                android:layout_marginLeft="20dp"
                android:layout_marginBottom="20dp"
                android:elevation="5dp"
                android:translationZ="5dp"
                android:stateListAnimator="@null"
                android:background="@android:color/holo_green_light"
                android:text="BUTTON"/>

        </RelativeLayout>
    </LinearLayout>
</ScrollView>

MainActivity.java

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }

}

显示阴影的按钮,在API 22在此处输入图像描述

相同的按钮不显示阴影,在API 16在此处输入图像描述

4

2 回答 2

12

对于Pre-LolliPop设备,您必须使用可绘制文件创建阴影或高程。这边走。

drawable在您的文件夹中创建文件,如element_background.xml

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

<item>
    <shape android:shape="rectangle">
        <solid android:color="#BDBDBD"/>
        <corners android:radius="5dp"/>
    </shape>
</item>

<item
    android:left="0dp"
    android:right="0dp"
    android:top="0dp"
    android:bottom="2dp">
    <shape android:shape="rectangle">
        <solid android:color="#ffffff"/>
        <corners android:radius="5dp"/>
    </shape>
</item>
</layer-list>

然后将以下代码添加到您想要的元素中。

android:background="@drawable/element_background"
于 2016-07-09T07:44:21.637 回答
6

If you wish, you can try Carbon. It's a library backporting material features back to 2.2. It supports elevation and generated, animated shadows as well.

https://github.com/ZieIony/Carbon

于 2016-07-10T22:59:22.970 回答