Я хочу, чтобы два элемента TextView
отображались бок о бок (в элементе списка), один был выровнен слева, один - вправо. Что-то вроде:
|<TextView> <TextView>|
(|
представляют крайности экрана)
Тем не менее, TextView
слева может содержать слишком длинный контент, который будет помещаться на экране. В этом случае я хочу, чтобы он был эллипсисом, но все же отображал все правое TextView
. Что-то вроде:
|This is a lot of conte...<TextView>|
У меня было множество попыток, используя как LinearLayout
, так и RelativeLayout
, и единственным решением, которое я придумал, является использование RelativeLayout
и добавление marginRight
влево TextView
big достаточно, чтобы очистить право TextView
. Как вы можете себе представить, это не оптимально.
Есть ли другие решения?
Конечное, LinearLayout
решение:
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:orientation="horizontal"
>
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_weight="1"
android:ellipsize="end"
android:inputType="text"
/>
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_weight="0"
android:layout_gravity="right"
android:inputType="text"
/>
</LinearLayout>
Старый, TableLayout
решение:
<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:stretchColumns="1"
android:shrinkColumns="0"
>
<TableRow>
<TextView android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="end"
android:singleLine="true"
/>
<TextView android:id="@+id/date"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:singleLine="true"
android:ellipsize="none"
android:gravity="right"
/>
</TableRow>
</TableLayout>