资源字符串中的换行符不起作用。安卓系统

时间:2018-11-19 18:17:03

标签: android textview android-resources

此问题存在两次:

Line break \n doesn't work, it show as string

String Resource new line /n not possible?

但是\ n或按strings.xml的回车都不能在设置文本的textView中给我换行。 有谁知道为什么?

我的textView:

   <TextView
    android:id="@+id/textView"
    android:layout_width="952dp"
    android:layout_height="172dp"
    android:layout_marginStart="8dp"
    android:layout_marginTop="8dp"
    android:layout_marginEnd="8dp"
    android:layout_marginBottom="8dp"
    android:ems="10"
    android:inputType="textPersonName"
    android:text="@string/give_username"
    android:textSize="45sp"
    android:textStyle="bold"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintVertical_bias="0.003" />

我如何设置文本:

this.textView.setText(R.string.give_sex_age);

资源中的字符串:

<string name="give_sex_age">You are a new user.\nPlease give your sex and your age</string>

1 个答案:

答案 0 :(得分:3)

正如seeing.amusing在评论中所说,这是inputType导致换行被忽略的原因。我只是删除此行

Industry_Code(Primary key) | Industry_name
1| Reliance
2| TaTa

现在可以了!