मेरे पास एक सूची दृश्य है, और प्रत्येक सूची आइटम के साथ मैं चाहता हूं कि इसके नीचे एक छाया दिखाई दे। मैं दृश्य पर एक Z सेट करने के लिए Android लॉलीपॉप की नई ऊंचाई सुविधा का उपयोग कर रहा हूं जिसे मैं एक छाया डालना चाहता हूं, और पहले से ही एक्शनबार (तकनीकी रूप से लॉलीपॉप में एक टूलबार) के साथ प्रभावी ढंग से कर रहा हूं। मैं लॉलीपॉप की ऊंचाई का उपयोग कर रहा हूं, लेकिन किसी कारण से यह सूची मदों के तहत छाया नहीं दिखा रहा है। यहां बताया गया है कि प्रत्येक सूची आइटम का लेआउट कैसे सेट किया गया है:
<?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 के लिए एक पृष्ठभूमि लागू।
- उत्थान के स्थान पर TranslZ का उपयोग किया।