2011-09-01 7 views
0

私の貧しい人を本当に本当に残念に思っています。別の文字数でテキストを整列する

ここは私が作ったものです。

<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="horizontal" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"> 
    <TextView android:id="@+id/txtTImeRemain" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:textSize="20sp" 
    android:layout_marginRight="50dip" 
    android:textColor="#ff000000" 
    android:gravity="center_vertical|left" 
    /> 
    <TextView android:id="@+id/title" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:textSize="20sp" 
    android:layout_marginRight="5dip" 
    android:textColor="#ff000000" 
    android:gravity="center_vertical|right" 
    /> 
</LinearLayout> 

私の質問があると

enter image description here

左の単語をその行の中央に揃えたいとします。彼らの持つキャラクターの数にかかわらず。

答えて

2

TableLayoutを使用すると、テーブル行のさまざまな部分のlayout_gravityを設定できます。

+0

私の元の質問は「行」ではなく、「列」でしたが、私はTableLayoutとlayout_gravityで解決しました。ありがとうございました! –