1

我在 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>

这是我的结果:

在此处输入图像描述

这些项目如何根据宽度自动排列?

感谢您的关注 !

4

2 回答 2

1

您将所有三个都添加到了textviews一个 haveLinearLayouthorizontal orientation。这就是为什么您没有获得所需的视图。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">

<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"/>

        </LinearLayout>

            <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>
于 2013-08-27T11:39:06.353 回答
1
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<TextView
    android:id="@+id/one_tv"
    style="@style/new_hot_hastag"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginRight="40dp"
    android:text="Hồ-Hoài-Anh" />

<TextView
    android:id="@+id/two_tv"
    style="@style/new_hot_hastag"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_toRightOf="@id/one_tv"
    android:text="Bàn-thắng" />

<TextView
    android:id="@+id/three_tv"
    style="@style/new_hot_hastag"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@id/one_tv"
    android:text="Hà-Nội-mùa-thu-tháng-8" />

PS android:text="Bàn-thắng" 应该是这样的: android:text="@string/two"

string.xml: Bàn-thắng 祝你好运!

于 2013-08-27T11:52:03.327 回答