在我的布局中,我在活动的顶部有徽标。
现在我想把我的相对布局分成三个相同的部分,在里面包含三个相对布局。
是否可以为相对布局确定权重?
我如何把它分成3个相同的相对布局?
这是我的代码:
<RelativeLayout
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<ImageView android:layout_width="wrap_content"
android:background="@drawable/logo"
android:id="@+id/logo"
android:layout_centerHorizontal="true"
android:layout_height="wrap_content"/>
<RelativeLayout android:layout_width="match_parent"
android:layout_below="@+id/logo"
android:layout_height="match_parent">
</RelativeLayout>
</RelativeLayout>
最佳答案
没有相对论布局不支持权重,只使用线性布局,会给出预期的结果:
<LinearLayout
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
orientation:"vertical"
tools:context=".MainActivity">
<RelativeLayout
android:layout_height="0dp"
android:layout_width="wrap_content"
android:layout_weight="1">
<ImageView android:layout_width="wrap_content"
android:background="@drawable/logo"
android:id="@+id/logo"
android:layout_centerHorizontal="true"
android:layout_height="wrap_content"/>
</RelativeLayout>
<RelativeLayout
android:layout_height="0dp"
android:layout_width="wrap_content"
android:layout_weight="1">
</RelativeLayout>
<RelativeLayout
android:layout_height="0dp"
android:layout_width="wrap_content"
android:layout_weight="1">
</RelativeLayout>
</LinearLayout>