我在 LinearLayout 中排列项目时遇到问题。这就是我需要的:

但是用我的代码:
<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"
                style="@style/new_hot_hastag"
                android:layout_marginRight="4dp"
                android:text="Hồ-Hoài-Anh"/>
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                style="@style/new_hot_hastag"
                android:layout_marginRight="4dp"
                android:text="Bàn-thắng"/>
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                style="@style/new_hot_hastag"
                android:text="Hà-Nội-mùa-thu-tháng-8"/>
        </LinearLayout>
这是我的结果:

这些项目如何根据宽度自动排列?
感谢您的关注 !