1

テキストをすべて中央揃えにしようとしていますが、うまくいきません。これが私のxmlコードです

<TextView
android:id="@+id/creditText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20dp"
android:textColor="#ffffff"
android:layout_marginLeft="0dp"
android:layout_marginTop="350dp"
android:gravity="center"
android:maxLines="6"
android:text="
Dalton Metlzer: Lead Programer/Designer
Cole Selensky: Lead Designer/Programer 
Carson Rego: Lead Artist
Carly R: Logo Artist
Evan Swonke: Music Composer/Performer
Blake Jackson: Narator"
 />

代わりに、すべてがごちゃごちゃになります。

これはそれがどのように見えるかです http://i.imgur.com/DVNua.png

4

6 に答える 6

1

それらの名前の間にスペースを入れました。ページ内の中央に名前の垂直リストが必要だと思います。この場合、スペースの代わりに、すべての名前の最後で Enter キーを押して、改行文字を取得します。次に、名前の縦方向のリストを中央揃えにすることができます。

于 2012-11-03T06:25:40.867 に答える
0

これを試してください:

<TextView
        android:id="@+id/creditText"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_marginLeft="0dp"
        android:layout_marginTop="0dp"
        android:gravity="center"
        android:maxLines="6"
        android:text="
Dalton Metlzer: Lead Programer/Designer
Cole Selensky: Lead Designer/Programer 
Carson Rego: Lead Artist
Carly R: Logo Artist
Evan Swonke: Music Composer/Performer
Blake Jackson: Narator"
        android:textColor="#ffffff"
        android:textSize="20dp" />
于 2012-11-03T06:28:13.420 に答える
0

このコードは役に立つかもしれません

        <TextView
        android:id="@+id/creditText"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_marginLeft="0dp"
        android:layout_marginTop="350dp"
        android:gravity="center"
        android:textColor="#ffffff"
        android:textSize="20dp"
        android:maxLines="6"
        android:text="Dalton 
                   Metlzer: Lead Programer/Designer\n
                   Cole Selensky: Lead Designer/Programer\n 
                   Carson Rego: Lead Artist\n
                   Carly R: Logo Artist\n
                   Evan Swonke: Music Composer/Performer\n
                   Blake Jackson: Narator"
        />
于 2012-11-03T06:34:34.293 に答える
0

これを追加してみてください:

android:layout_gravity="center"
于 2012-11-03T07:53:22.587 に答える