আমার একটি তালিকাভিউ রয়েছে এবং প্রতিটি তালিকার আইটেমের সাথে এটির নীচে একটি ছায়া দেখাতে চাই। আমি একটি ছায়া ফেলতে চাই সেই দৃশ্যে একটি জেড সেট করতে অ্যান্ড্রয়েড ললিপপের নতুন উচ্চতা বৈশিষ্ট্যটি ব্যবহার করছি এবং ইতিমধ্যে অ্যাকশনবারের (প্রযুক্তিগতভাবে ললিপপের একটি সরঞ্জামদণ্ড) দিয়ে এটি কার্যকরভাবে করছি doing আমি ললিপপের উচ্চতা ব্যবহার করছি তবে কোনও কারণে এটি তালিকার আইটেমগুলির নীচে কোনও ছায়া দেখাচ্ছে না। প্রতিটি তালিকার আইটেমের লেআউটটি কীভাবে সেট আপ করা হয়েছে তা এখানে:
<?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>
তবে, এটি এখানে ছায়া ছাড়াই তালিকার আইটেমটি কীভাবে দেখায়:
আমি নিম্নলিখিত চেষ্টা করেও কোন লাভ করতে পারিনি:
- অভিভাবক বিন্যাসের পরিবর্তে ইমেজভিউ এবং টেক্সটভিউগুলিতে তাদের উন্নতি সেট করুন।
- ইমেজভিউতে একটি পটভূমি প্রয়োগ করা হয়েছে।
- উন্নয়নের জায়গায় অনুবাদ অনুবাদ