TextViews 不显示在 Android 中

Posted

技术标签:

【中文标题】TextViews 不显示在 Android 中【英文标题】:TextViews don't show up in Android 【发布时间】:2022-01-05 13:58:06 【问题描述】:

在我的 android 应用程序中,我尝试添加一个 TextView 来为我的一些活动添加标题。但是,它似乎不起作用,因为在我的所有活动中,TextViews 都没有出现。我是开发 Android 应用程序的新手,所以我可能做错了什么,但我尝试添加不同的元素(按钮、纯文本等)并且它们都出现了,我只有 Textview 的问题.

这是我的代码:

<androidx.constraintlayout.widget.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_
    android:layout_
    tools:context=".WishlistActivity">

    <TextView
        android:id="@+id/textView"
        android:layout_
        android:layout_
        android:layout_marginStart="173dp"
        android:layout_marginTop="87dp"
        android:layout_marginEnd="156dp"
        android:layout_marginBottom="625dp"
        android:text="Wishlist stuff"
        android:gravity="center_horizontal"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
    
    
</androidx.constraintlayout.widget.ConstraintLayout>```

【问题讨论】:

需要更多细节,您是否在活动/片段中设置了正确的文件?你能在设计编辑器中看到它吗?你用的是什么颜色的文字,你确定文字和背景不一样吗? 很可能是因为您有大量边距,android:layout_marginBottom="625dp" 太大了,如果您要对所有 4 个位置使用约束,那么这不是使用约束布局的正确方法,然后只是用边距移动它,这是没有意义的。而只是使用顶部约束或底部约束,然后使用左侧和/或右侧。您将很可能永远不需要高于 32 或 64 的边距 @a_local_nobody 非常感谢!这对我有用,不太了解如何定位边距以外的项目。现在可以使用了! 没问题,我很高兴看到你从约束布局开始,线性/相对绝对不是要走的路,但旧的教程仍然教给人们,这只是浪费时间。约束布局确实需要一些练习,坚持下去 【参考方案1】:
    <?xml version="1.0" encoding="utf-8"?>

<androidx.constraintlayout.widget.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_
    android:layout_
    tools:context=".MainActivity">

    <TextView
        android:id="@+id/textView"
        android:layout_
        android:layout_
        android:layout_marginStart="173dp"
        android:layout_marginTop="87dp"
        android:layout_marginEnd="156dp"
        android:layout_marginBottom="625dp"
        android:text="Wishlist stuff"
        android:gravity="center_horizontal"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />


</androidx.constraintlayout.widget.ConstraintLayout>

Output image

代码没有错误,只需根据您的屏幕尺寸修正边距即可。

【讨论】:

【参考方案2】:

去除Textview中的边距并尝试一下

【讨论】:

谢谢,调整页边距对我有用!【参考方案3】:

您可能只是将 textview 拖放到 ContraintLayout 中并将其移动到特定位置。 Android Studio 通过相应地调整边距来移动视图。 然后你将它设置为 0dp,希望它会扩展,它通常会这样做。您只是错过了之后删除或调整边距。

试试这个:

    <TextView
    android:id="@+id/textView"
    android:layout_
    android:layout_
    android:text="Wishlist stuff"
    android:gravity="center_horizontal"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

【讨论】:

以上是关于TextViews 不显示在 Android 中的主要内容,如果未能解决你的问题,请参考以下文章

Android:单击按钮时如何显示TextView?

反应本机位置权限对话框在Android中不显示

将 Textviews 添加到 ListView 中存在的 ViewPager 但 textviews 不可见

Android:是不是可以在 TextViews 9patch 背景之外设置 drawableLeft?

Android:Logcat 在 Intellij IDEA 中不显示任何内容

Whatsapp 缩略图预览在 IOS 和 OS 中显示,但在 Android 中不显示