gpt4 book ai didi

android - 线性布局中的自动调整项目

转载 作者:行者123 更新时间:2023-11-29 02:18:32 25 4
gpt4 key购买 nike

我在线性布局中有两个约束布局。我希望约束布局在所有设备上分别占据屏幕的 30% 和 70%。我需要在线性布局中设置什么属性才能实现此目的?

最佳答案

这应该会产生预期的结果。为父线性布局设置一个 weightSum 属性,然后相应地赋予权重有助于

<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="1" >

<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.3"/>

<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.7"/>
</LinearLayout>

关于android - 线性布局中的自动调整项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58172488/

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