我正在做一个布局。temp1 包含在 temp2 中。temp1 工作正常,但是当我将它包含在 temp2 中时。它填满了整个屏幕,因为 temp1 中的根设置为 fill_parent。在这种情况下可能有什么解决方案?
我想在 temp1 中心的一个小区域 temp2 中显示布局。
temp1.xml
<RelativeLayout android:layout_height="fill_parent"
android:layout_width="fill_parent">
</RelativeLayout>
temp2.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:id="@+id/relativeLayout">
<include
android:layout_width="match_parent"
android:layout_height="match_parent"
layout="@layout/temp1"/>
</RelativeLayout>
</RelativeLayout>