我正在尝试在弹出菜单上获得一个投影,其定义如下 -
<?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,但无济于事。我也试过this question,我无法让它工作,可能的原因是我的父布局在不同的xml布局文件中。这有什么不对?