如何在ScrollView中的不同行上添加描述?

时间:2018-09-21 06:06:16

标签: android android-layout scrollview

如何在滚动视图中创建描述? 我想将日期放在一行上,而标题放在另一行上,但是即使有空格并按Enter,它也会在一行上全部创建。

代码运行良好,我只需要能够控制我在哪一行上写的内容的帮助即可。例如

日期 位置 标题 到期

不是将它们写在单独的行上,而是全部放在同一行上。即使使用回车,制表符,空格。

主要活动

 TextView mTitleWindow = (TextView) findViewById(R.id.titleWindow);
 TextView mMessageWindow = (TextView) findViewById(R.id.messageWindow);

    mTitleWindow.setText("BATMAN IS PART OF THE DC TRINITY");
    StringBuilder stringBuilder = new StringBuilder();
    String someMessage = "hello     hi" ;
    stringBuilder.append(someMessage);

    mMessageWindow.setText(stringBuilder.toString());

布局

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">


        <TextView
            android:id="@+id/titleWindow"
            android:layout_width="352dp"
            android:layout_height="58dp"
            android:layout_alignParentStart="true"
            android:layout_alignParentTop="true"
            android:layout_marginStart="16dp" />


        <TextView
            android:id="@+id/messageWindow"
            android:layout_width="350dp"
            android:layout_height="455dp"
            android:layout_alignParentBottom="true"
            android:layout_alignParentEnd="true"
            android:layout_marginEnd="17dp"
            android:layout_below="@id/titleWindow" />

    </RelativeLayout>
</ScrollView>

1 个答案:

答案 0 :(得分:0)

您好@D_TECK在字符串变量值中使用“ \ n”作为消息中的单独行。

String someMessage = "hello     \n hi";