gpt4 book ai didi

android - 嵌套的 TextView(ConstraintLayout --> LinearLayout)仅在编辑器中可见

转载 作者:行者123 更新时间:2023-11-29 16:30:10 29 4
gpt4 key购买 nike

<分区>

包含在 LinearLayout 中的 ConstraintLayout 中的 TextView 仅在 Android Studio 的预览窗口中可见。

TextView 被限制在父级的开始和顶部,所以它应该放在 View 的左上角。所有三个 View 都设置为填充父 View 的大小。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
android:orientation="vertical"
tools:context=".MainActivity" >

<android.support.constraint.ConstraintLayout
android:id="@+id/view_downloads"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="visible"> <!-- default -->

<TextView
android:id="@+id/textview_downloads"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:textAppearance="@android:style/TextAppearance.Material.Large"
android:visibility="visible"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:text="Hello World!" />

</android.support.constraint.ConstraintLayout>

</LinearLayout>

我希望看到“Hello World!”放置在屏幕左上角,如图Preview window here ,但我看到的是一个空白 View ,如 this screenshot 中所示,取自使用“空 Activity ”项目模板和上面显示的布局的最小示例。

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