를 만들려면 :나는 다음의 레이아웃이 =있는 LinearLayout의 요소는 무게 = 1 폭 가능한 모든 공간을 채우기하지 0
<LinearLayout
android:id="@+id/work_item_layout"
android:orientation="horizontal"
android:layout_width="match_parent"
android:gravity="left"
android:background="@android:drawable/list_selector_background"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="6sp"
android:id="@+id/work_item_update"/>
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:textSize="16sp"
android:maxLines="2"
android:text="LALALALLALLALALALALALALLA...."
android:id="@+id/work_item_title">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxLines="1"
android:textSize="13sp"
android:id="@+id/work_item_rate_and_size"/>
</LinearLayout>
문제는 중앙 텍스트 뷰는 사용 가능한 모든 공간을 채우기하지만 난 그것이 가능한 최소한의 공간이되고 싶어요를 . 중앙 텍스트 뷰의 폭을 "warp_content"로하면 모든 공간을 채울 수있을 정도로 큰 중앙 공간이 있으면 마지막 공간이 지워집니다. 중앙 요소 너비를 warp_content와 같게하려면 어떻게해야합니까? 중앙 텍스트가 1 줄 이상이면 마지막 요소를 지워서는 안됩니다. (마지막 TextView 텍스트가 중앙 TextView 텍스트 바로 옆에 있어야합니다.)