尽管TextView采用了适当的大小,但TextView的文本消失了(未包装)

时间:2018-06-04 00:09:19

标签: java android textview android-constraintlayout

我正在使用ConstraintLayout(仍然是初学者)。文本摘要的文本不会出现。

xml片段:

    <TextView
    android:id="@+id/textView23"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:background="@color/goldenrod"
    android:lineSpacingExtra="-8.7sp"
    android:textAlignment="center"
    android:textColor="#ffffff"
    android:textSize="26.7sp"
    app:layout_constraintBottom_toBottomOf="@+id/imageView2"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    tools:text="JOIN US" />

我试过了两个:

    app:layout_constraintWidth_default="wrap"
    app:layout_constrainedWidth="true"

编辑: 我也尝试制作textview&#34; wrap_content&#34;和&#34; match_parent&#34;

编辑2: 毕竟我的错误。使用命名空间&#34;工具&#34;而不是&#34; android&#34;

1 个答案:

答案 0 :(得分:0)

您必须更改此参数:

android:layout_width="0dp"

尝试:

android:layout_width="wrap_content"

或:

android:layout_width="match_parent"

或大于0dp的值。