gpt4 book ai didi

android-layout - 如何将 Android XML 拆分为三个相等的布局矩形?

转载 作者:行者123 更新时间:2023-12-02 21:56:09 27 4
gpt4 key购买 nike

如何将 Android XML View 拆分为三个相等的布局矩形,如下图所示?

enter image description here

最佳答案

您想使用垂直 LinearLayout,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="3" >

<FrameLayout
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:background="#ff0000" >
</FrameLayout>
<FrameLayout
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:background="#00ff00" >
</FrameLayout>
<FrameLayout
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:background="#0000ff" >
</FrameLayout>

</LinearLayout>

关于android-layout - 如何将 Android XML 拆分为三个相等的布局矩形?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17779411/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com