你如何让一个项目出现在android的下一行:orientation =“horizo​​ntal”LinearLayout?

时间:2013-05-12 13:31:02

标签: android

这是我的XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
    android:orientation="vertical" >

    <EditText android:id="@+id/edit_message"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:hint="@string/edit_message" />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:onClick="sendMessage"
        android:text="@string/button_send" />

</LinearLayout>

我还无法添加图片,但基本上我想要一个宽度为满的文本字段,下一行是一个位于中心的按钮。

我想知道如何用android:orientation =“horizo​​ntal”做同样的事情。

1 个答案:

答案 0 :(得分:1)

  

我想知道如何用android:orientation =“horizo​​ntal”做同样的事情。

你没有。如果更改布局的方向,它将完全更改。如果你仍然希望这样,你将不得不使用嵌套的布局来实现这种效果。类似的东西:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >
    <LinearLayout 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"
        android:orientation="vertical" >

        <EditText android:id="@+id/edit_message"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:hint="@string/edit_message" />

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:onClick="sendMessage"
            android:text="@string/button_send" />

    </LinearLayout>
</LinearLayout>

然而,在这种情况下,最外层的布局是多余的,你应该摆脱它。