안녕하세요.
첨부한 그림과 같이 horizontal 한 LinearLayout 에서
TextView1 과 TextView2가 배치되어있습니다.

여기서 TextView1 의 내용 길이와는 관계없이 항상
TextView2가 저 위치에서 시작되도록 배치하고 싶습니다.

어떻게 하면 좋을까요?
XML 은 다음과 같습니다.

<LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
android:id="@+id/TextViewSeat" android:textSize="16sp"
android:maxLines="1" android:layout_marginLeft="20sp"></TextView>
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
android:id="@+id/TextViewSeatRemain" android:textSize="16sp"
android:maxLines="1"></TextView>
</LinearLayout>