gpt4 book ai didi

生成的约束布局中的 Android layout_width ="match_parent"?

转载 作者:行者123 更新时间:2023-11-29 00:56:33 26 4
gpt4 key购买 nike

当我使用 Android Studio 创建一个新的 Android 应用程序项目时,文件 activity_main.xml 包含以下内容。 为什么 TextViewlayout_widthlayout_height 属性的值为 wrap_content 我想如果 View 是用约束布局的,layout_widthlayout_height 应该有值 0dp

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />

</android.support.constraint.ConstraintLayout>

最佳答案

属性 layout_width 和 layout_height 的值完全取决于您的要求有关更多信息,请查看此链接:-

更多信息:- https://developer.android.com/reference/android/support/constraint/ConstraintLayout

关于生成的约束布局中的 Android layout_width ="match_parent"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54320295/

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