ListView가 있고 각 목록 항목과 함께 그 아래에 그림자를 표시하려고합니다. Android Lollipop의 새로운 고도 기능을 사용하여 그림자를 드리 우고 자하는 뷰에서 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" >
<appuccino.simplyscan.Extra.CustomTextView
android:id="@+id/documentName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@color/white"
app:typeface="light"
android:paddingLeft="16dp"
android:paddingTop="8dp"
android:paddingBottom="4dp"
android:singleLine="true"
android:text="New Document"
android:textSize="27sp"/>
<appuccino.simplyscan.Extra.CustomTextView
android:id="@+id/documentPageCount"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@color/white"
app:typeface="italic"
android:paddingLeft="16dp"
android:layout_marginBottom="16dp"
android:text="1 page"
android:textSize="20sp"/>
</LinearLayout>
</RelativeLayout>
</RelativeLayout>
그러나 그림자없이 목록 항목을 표시하는 방법은 다음과 같습니다.
또한 다음을 시도했지만 아무 소용이 없었습니다.
- 부모 배치 대신 높이를 ImageView 및 TextViews로 설정하십시오.
- ImageView에 배경을 적용했습니다.
- 고도 대신에 TranslationZ를 사용했습니다.