2

我正在尝试编辑布局文件,以便两个按钮并排显示,而不是一个在另一个之上。以下是布局文件中的代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="225dp"
android:layout_height="wrap_content"
android:background="@color/dark_yellow"
android:orientation="vertical"
android:padding="12dip" >

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:paddingBottom="12dip"
android:text="@string/dialog_text"
android:textColor="@color/light_yellow"
android:textSize="@dimen/font_medium" />

<Button
android:id="@+id/btn_go_to_new_App"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:onClick="Go"
android:text="@string/btn_go" />

<Button
android:id="@+id/btn_stay"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:onClick="stay"
android:text="@string/btn_stay_at_lifecycle" />

</LinearLayout>

截至目前,btn_go出现在上面btn_stay_at_lifecycle。我需要做什么才能btn_stay_at_lifecycle显示在右侧btw_go

谢谢!

4

5 回答 5

3

LinearLayout的定义为vertical,因此您添加的每个项目都将垂直组织。

如果您需要并排放置一些项目,请将它们包含在LinearLayoutwith 属性android:orientation="horizontal"中。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="225dp"
    android:layout_height="wrap_content"
    android:background="@color/dark_yellow"
    android:orientation="vertical"
    android:padding="12dip" >

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_horizontal"
        android:paddingBottom="12dip"
        android:text="@string/dialog_text"
        android:textColor="@color/light_yellow"
        android:textSize="@dimen/font_medium" />

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >

        <Button
            android:id="@+id/btn_go_to_new_App"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:onClick="Go"
            android:text="@string/btn_go" />

        <Button
            android:id="@+id/btn_stay"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:onClick="stay"
            android:text="@string/btn_stay_at_lifecycle" />

    </LinearLayout>

</LinearLayout>

orientationaLinearLayout的默认值为"horizontal"。所以即使你没有android:orientation在 inner 中指定LinearLayout,它也会并排排列它的内容。

于 2012-09-27T06:51:58.770 回答
3

使用以下:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="225dp"
android:layout_height="wrap_content"
android:background="@color/dark_yellow"
android:orientation="vertical"
android:padding="12dip" >

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:paddingBottom="12dip"
android:text="@string/dialog_text"
android:textColor="@color/light_yellow"
android:textSize="@dimen/font_medium" />

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/btn_go_to_new_App"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:onClick="Go"
android:text="@string/btn_go" />

<Button
android:id="@+id/btn_stay"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:onClick="stay"
android:text="@string/btn_stay_at_lifecycle" />
</LinearLayout>
</LinearLayout>
于 2012-09-27T06:53:25.817 回答
3
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="225dp"
android:layout_height="wrap_content"
android:background="@color/dark_yellow"
android:orientation="vertical"
android:padding="12dip" >

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:paddingBottom="12dip"
android:text="@string/dialog_text"
android:textColor="@color/light_yellow"
android:textSize="@dimen/font_medium" />


<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <Button
        android:id="@+id/btn_go_to_new_App"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:onClick="Go"
        android:text="@string/btn_go" />

    <Button
        android:id="@+id/btn_stay"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:onClick="stay"
        android:text="@string/btn_stay_at_lifecycle" />
</LinearLayout>

</LinearLayout>
于 2012-09-27T06:53:41.543 回答
3

尝试这个

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="225dp"
    android:layout_height="wrap_content"
    android:background="@color/dark_yellow"
    android:orientation="vertical"
    android:padding="12dip" >

    <TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center_horizontal"
    android:paddingBottom="12dip"
    android:text="@string/dialog_text"
    android:textColor="@color/light_yellow"
    android:textSize="@dimen/font_medium" />

 <LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    >

    <Button
    android:id="@+id/btn_go_to_new_App"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:onClick="Go"
    android:text="@string/btn_go" />

    <Button
    android:id="@+id/btn_stay"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:onClick="stay"
    android:text="@string/btn_stay_at_lifecycle" />
     </LinearLayout>
    </LinearLayout>
于 2012-09-27T06:53:55.157 回答
1

尝试

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="225dp"
android:layout_height="wrap_content"
android:background="@color/dark_yellow"
android:orientation="vertical"
android:padding="12dip" >

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:paddingBottom="12dip"
android:text="@string/dialog_text"
android:textColor="@color/light_yellow"
android:textSize="@dimen/font_medium" />

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">

       <Button
    android:id="@+id/btn_go_to_new_App"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight=".5"
    android:onClick="Go"
    android:text="@string/btn_go" />

    <Button
    android:id="@+id/btn_stay"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight=".5"
    android:onClick="stay"
    android:text="@string/btn_stay_at_lifecycle" />

</LinearLayout>
    </LinearLayout>
于 2012-09-27T06:57:17.253 回答