0

很简单的问题。还是我是个白痴。基本上我在.xml中制作了一个带有文本的应用程序,如下所示(在列表中):

-name
-email
-phone
-venue
-date
-etc

相反,在应用程序中它会像这样出现

姓名地址电话县等

只是我还是这个简单的我查看并搜索谷歌但我找不到与我的情况相关的任何内容

  • 如果我做错了我应该使用什么
    • 我是否需要创建另一个 textview eveytime 我有一个新行?

非常感谢hhh

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".Main" >

<TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:text=""
    android:textAppearance="?android:attr/textAppearanceSmall" />

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true" >
</LinearLayout>

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:orientation="vertical"
    android:text="Name *
Phone *

Email *

Type of Event

Date of Event (if known)

What would you like to know more about?

Message:
"
        android:textAppearance="?android:attr/textAppearanceSmall" />

</RelativeLayout>
4

1 回答 1

0

将您的 TextView 更改为:

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:orientation="vertical"
    android:text="Name *\n
    Phone *\n
    Email *\n
    Type of Event\n
    Date of Event (if known)\n
    What would you like to know more about?\n
    Message:"
    android:textAppearance="?android:attr/textAppearanceSmall" />

\nnewline性格。如果您想要换行符,请使用它。

于 2013-06-05T18:09:10.600 回答