gpt4 book ai didi

Android:嵌套线性布局错误

转载 作者:行者123 更新时间:2023-11-30 01:57:48 25 4
gpt4 key购买 nike

作为测试,我正在尝试在屏幕的上半部分创建一行三张图像(垂直方向均匀分布)。出于某种原因,android:layout_height="0dp"给我一个错误,说它会使 View 不可见。当然是对的,我什么也看不见。为什么会这样?我将权重更改为 1,那么为什么它不扩展以占用可用空间?谢谢!

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">





<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="vertical">

<ImageView
android:layout_width="match_parent"
android:layout_height="100dp"
android:scaleType="centerCrop"
android:src="@drawable/arches_utah"/>

<ImageView
android:layout_width="match_parent"
android:layout_height="100dp"
android:scaleType="centerCrop"
android:src="@drawable/blue_sea_mountains"/>

<ImageView
android:layout_width="match_parent"
android:layout_height="100dp"
android:scaleType="centerCrop"
android:src="@drawable/china_jungle"/>

</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="vertical">

</LinearLayout>

最佳答案

元素上的 layout_weight 适用于该元素的父元素。由于您的父元素具有水平方向,因此您只能将 layout_weightlayout_width 搭配使用。如果您的根 LinearLayoutvertical 那么您可以将 layout_height 设置为 0dp 并使用 layout_weight 代替。

从您的问题来看,听起来您应该在第一个子 LinearLayout 中的三个元素上设置重量和高度。

关于Android:嵌套线性布局错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31954261/

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