40

我正在尝试"android: elevation ="在我的应用程序中使用,但是一旦我运行它就不会出现在具有 android 4.1.2 的设备中

毕业典礼

apply plugin: 'com.android.application'

android {
    compileSdkVersion 21
    buildToolsVersion "21.1.2"

    defaultConfig {
        applicationId "com.example.alvaro.proyectocaronte"
        minSdkVersion 14
        targetSdkVersion 21
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:21.0.3'
}

布局.xml

<RelativeLayout
                android:layout_width="1100dp"
                android:layout_height="fill_parent"
                android:background="@drawable/rounded_corner"
                android:layout_alignParentTop="true"
                android:layout_alignParentRight="true"
                android:layout_alignParentEnd="true"
                android:layout_marginRight="93dp"
                android:layout_marginEnd="93dp"
                android:elevation="3dp"/>

也许我没有为前棒棒糖设备正确编译棒棒糖,有什么建议吗?

如果您需要查看代码的其他部分,我将编辑问题

谢谢

4

4 回答 4

21

更新::

  1. 这样做的最佳实践

    <android.support.v7.widget.CardView>
        <YourLayout>
    </android.support.v7.widget.CardView>
    

    并为cardview添加库

    dependencies {
       ...
       compile 'com.android.support:cardview-v7:21.0.+'
     }
    
  2. Pre-Lollipop上,您可以使用此可绘制对象

    android:background="@android:drawable/dialog_holo_light_frame"

    它会给你一个海拔的外观

  3. 你可以像这样创建自己的

    <?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>
    

参考

于 2016-03-10T12:04:16.200 回答
15

海拔需要设备运行 Lollipop。请参阅此答案以了解如何模拟海拔https://stackoverflow.com/a/26747592/680249

于 2014-12-29T18:39:09.553 回答
12

您还可以使用支持库中的 CardView 来实现表面。
为此,将依赖项添加到您的 build.gradle:

compile 'com.android.support:cardview-v7:23.1.1'

然后只需在您的布局中使用它:

  <android.support.v7.widget.CardView
      android:layout_width="match_parent"
      android:layout_height="150dp"
      android:layout_margin="16dp"
      android:background="#fff"
      >
  </android.support.v7.widget.CardView>

@android:drawable/dialog_holo_light_frame与用作背景相比,在这里您有更多的选项来自定义它

编辑:
另请注意,这种方法允许您在 Pre-Lolipop 设备上简单地实现
Material Design 。 您可以更改标高、 转角等。 为此,您必须:


 app:cardElevation="8dp"
 app:cardCornerRadius="8dp"
 app:contentPadding="5dp">

并且不要忘记添加xmlns:app="http://schemas.android.com/apk/res-auto" 到根布局。

您还可以轻松更改代码中的高度:

CardView card = (CardView) findViewById(R.id.yourPreetyCoolCardView);
card.setCardElevation(getResources()
    .getDimension(R.dimen.card_picked_up_elevation));

用于8dp拾取和2dp休息(通常)状态,你会很棒。

于 2016-04-01T12:38:49.390 回答
1

如此处所述,您可以通过以下方式模拟棒棒糖前的高度:

 android:background="@android:drawable/dialog_holo_light_frame"
于 2018-11-18T07:01:34.820 回答