我有以下Android XML布局文件:
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginEnd="@dimen/AutoComplete_marginSides"
android:layout_marginRight="@dimen/AutoComplete_marginSides"
android:layout_marginTop="@dimen/AutoComplete_marginTopBottom"
android:layout_marginBottom="@dimen/AutoComplete_marginTopBottom"
android:layout_marginLeft="@dimen/AutoComplete_marginSides"
android:layout_marginStart="@dimen/AutoComplete_marginSides"
android:id="@+id/autoCompleteLayout" >
<MyPackage.maps.DelayAutoCompleteTextView
android:id="@+id/geoAutoComplete"
android:layout_margin="@dimen/AutoCompleteTextView_layoutMargin"
android:layout_width="match_parent"
android:layout_height="@dimen/AutoCompleteTextView_height"
android:layout_gravity="center"
android:gravity="start|center_vertical"
android:inputType="textCapSentences"
android:background="@color/white"
android:paddingLeft="@dimen/AutoCompleteTextView_padding"
android:paddingRight="@dimen/AutoCompleteTextView_padding"
android:dropDownWidth="fill_parent"
android:textSize="@dimen/AutoCompleteTextView_fontSize"
android:hint="@string/search_map"
android:elevation="2dp"
android:singleLine="true"
android:maxLength="30"/>
<ImageView
android:id="@+id/geoAutoCompleteClear"
android:layout_gravity="center_vertical|end"
android:contentDescription="@string/search_map_clear"
android:layout_marginEnd="@dimen/AutoCompleteTextView_clearIconMargins"
android:layout_marginRight="@dimen/AutoCompleteTextView_clearIconMargins"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_clear"/>
</FrameLayout>
FrameLayout
布局位于RelativeLayout
内(我没有在上面显示)。此FrameLayout
只是文本视图,末尾有十字形以删除文本。
问题在于,当我向android:elevation
添加TextView
ImageView
后面TextView
时,虽然它不应该,因为我在TextView
之后定义了elevation
本身。据我所知,子序列决定了组件的显示方式。但是当我从TextView
移除ImageView
时,dejagnu.noarch
dejavu-sans-mono-fonts.noarch
dejavu-serif-fonts.noarch
显示正确。
我在这里错过了什么吗?这是什么原因?
答案 0 :(得分:5)
android:elevation
会覆盖FrameLayout或RelativeLayout中z-indexing的典型概念。你所目击的是正确的行为。您可以将ImageView的高程设置为“3dp”,这应该为您提供预期的排序。