【发布时间】:2019-07-03 11:16:51
【问题描述】:
如何在我的搜索组件下方将背景设置为白色(视图布局)?这是我的代码
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<include
layout="@layout/component_search"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:layout_marginTop="8dp"/>
<View
android:layout_width="match_parent"
android:layout_height="30dp"
android:background="@color/white"
android:elevation="1dp"/>
</RelativeLayout>
【问题讨论】:
-
如果您希望
include位于您的View之上,只需在您的 xml 中切换它们的位置 -
您可以在布局中设置一些高度,其中包含您希望在“TOP”上的元素。
标签: java android xml android-layout layout