Тень в выпадающем меню Android

Я пытаюсь получить тень на всплывающем меню, которое определено, как указано ниже -

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/llSortChangePopup"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:background="@color/backgroundColor"
    android:paddingBottom="15dp"
    android:paddingRight="30dp"
    android:paddingLeft="20dp"
    android:paddingTop="15dp"
    android:elevation="2dp"
    >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:paddingBottom="20dp"
        android:paddingTop="5dp">

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/ic_chat_bubble_outline_black_18dp" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Text"
            android:layout_marginLeft="20dp"
            android:paddingTop="3dp"
            android:gravity="center_vertical"
            android:textColor="@color/black"
            android:textSize="16dp"/>

    </LinearLayout>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:paddingBottom="20dp"
        android:paddingTop="5dp">

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/ic_chat_bubble_outline_black_18dp" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="More text"
            android:layout_marginLeft="20dp"
            android:paddingTop="3dp"
            android:gravity="center_vertical"
            android:textColor="@color/black"
            android:textSize="16dp"/>

    </LinearLayout>



</LinearLayout>

Проблема в том, что предварительный просмотр дизайна Android правильно показывает тень, но когда я запускаю ее на виртуальном устройстве, ничего не появляется. Я попытался дать атрибут высот основного макета, vlaue 0, но безрезультатно. Я также пытался ответить на этот вопрос, но не смог заставить его работать, возможная причина - мой родительский макет в другом файле макета xml. Что здесь не так?

0 ответов

Другие вопросы по тегам