gpt4 book ai didi

android - 为什么要将 layout_width 设置为零?

转载 作者:行者123 更新时间:2023-11-30 03:45:41 28 4
gpt4 key购买 nike

当我学习fragment on

http://developer.android.com/reference/android/app/Fragment.html

我在layout-land/fragment_layout.xml中看到了如下代码:

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

<fragment class="com.example.android.apis.app.FragmentLayout$TitlesFragment"
android:id="@+id/titles" android:layout_weight="1"
android:layout_width="0px" android:layout_height="match_parent" />

<FrameLayout android:id="@+id/details" android:layout_weight="1"
android:layout_width="0px" android:layout_height="match_parent"
android:background="?android:attr/detailsElementBackground" />

</LinearLayout>

为什么 fragment 和 framelayout 的 layout_width 都设置为零??我在纵向方向上尝试了相同的 xml,设置 android:orientation="vertical",然后显示了一个空白屏幕。那么这里面有什么 secret 呢?我的意思是垂直和水平之间有什么区别? FrameLayout 的特殊功能是什么?

最佳答案

您正在寻找的是权重属性,它将您的 LinearLayout 分成两个相等的部分。

secret 是android:layout_weight="1" learn more

关于android - 为什么要将 layout_width 设置为零?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15049807/

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