gpt4 book ai didi

android - 为什么view中layout_weight的效果和TextView的表现不一样?

转载 作者:行者123 更新时间:2023-11-29 01:08:20 25 4
gpt4 key购买 nike

我尝试使用 TextView 以 1:2:3 的比例设置 3 个彩色区域:

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

<TextView
android:layout_weight="1"
android:background="#FF0000"
android:layout_width="wrap_content"
android:layout_height="match_parent"
/>
<TextView
android:layout_weight="2"
android:background="#00FF00"
android:layout_width="wrap_content"
android:layout_height="match_parent"
/>
<TextView
android:layout_weight="3"
android:background="#0000FF"
android:layout_width="wrap_content"
android:layout_height="match_parent"
/>
</LinearLayout>

它有我想要的结果(android studio preview 的屏幕截图):

enter image description here

但是当我将 TextView 更改为 View 时:

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

<View
android:layout_weight="1"
android:background="#FF0000"
android:layout_width="wrap_content"
android:layout_height="match_parent"
/>
<View
android:layout_weight="2"
android:background="#00FF00"
android:layout_width="wrap_content"
android:layout_height="match_parent"
/>
<View
android:layout_weight="3"
android:background="#0000FF"
android:layout_width="wrap_content"
android:layout_height="match_parent"
/>
</LinearLayout>

布局更改(android studio preview 的屏幕截图):

enter image description here

这是什么原因?

最佳答案

你必须这样尝试

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

<View
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent"
android:background="#FF0000"/>
<View
android:layout_weight="2"
android:layout_width="0dp"
android:layout_height="match_parent"
android:background="#00FF00" />
<View
android:layout_weight="3"
android:layout_width="0dp"
android:layout_height="match_parent"
android:background="#0000FF"/>
</LinearLayout>

关于android - 为什么view中layout_weight的效果和TextView的表现不一样?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45341500/

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