gpt4 book ai didi

java - 我的代码中线性布局的父级是什么?

转载 作者:行者123 更新时间:2023-12-02 05:42:14 25 4
gpt4 key购买 nike

这是我目前的代码

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

<EditText android:id="@+id/edit_message"
android:layout_weight = "1"
android:layout_width = "0dp"
android:layout_height= "wrap_content"
android:hint = "@string/edit_message" />
<Button
android:layout_width = "wrap_content"
android:layout_height= "wrap_content"
android:text = "@string/submit"
android:onClick = "sendMessage" />


</LinearLayout>

我研究了术语match_parent,发现它与“父布局的大小”匹配(Src:http://www.simplecodestuffs.com/difference-between-wrap-content-and-fill-parentmatch-parent/)

对于按钮,如果我指定 match_parent,我知道父级将是线性布局。我的问题是,如果我在线性布局上指定 match_parent,它会匹配哪个父级?该 parent 的称呼是什么?

最佳答案

该 LinearLayout 的父级可以是一个 Activity(因此 LinearLayout 将与设备的屏幕一样大)、一个 Fragment 或一个列表/网格项等。基本上是您包含布局的任何 View 组。

关于java - 我的代码中线性布局的父级是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24418961/

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