Android“海拔”没有显示阴影我有一个ListView,每个列表项我希望它在它下面显示一个阴影。我正在使用Android Lollipop的新高程功能在View上设置一个我想要投射阴影的Z,并且我已经使用ActionBar(技术上是Lollipop中的工具栏)有效地做到了这一点。我正在使用Lollipop的高程,但由于某种原因,它没有在列表项下显示阴影。以下是每个列表项的布局设置方式:<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
style="@style/block"
android:gravity="center"
android:layout_gravity="center"
android:background="@color/lightgray"
>
<RelativeLayout
android:layout_width="300dp"
android:layout_height="300dp"
android:layout_marginLeft="40dp"
android:layout_marginRight="40dp"
android:layout_marginTop="20dp"
android:layout_marginBottom="20dp"
android:elevation="30dp"
>
<ImageView
android:id="@+id/documentImageView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop" />
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/alphared"
android:layout_alignParentBottom="true" >
</LinearLayout>
</RelativeLayout></RelativeLayout>但是,这是它如何显示列表项,没有阴影: 我也试过以下无济于事:将高程设置为ImageView和TextViews本身而不是父布局。将背景应用于ImageView。用TranslationZ代替Elevation。
- 3 回答
- 0 关注
- 343 浏览
添加回答
举报
0/150
提交
取消