1

这是我的 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" 做同样的事情。

4

1 回答 1

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>

但是,在这种情况下,最外面的布局是多余的,您应该去掉它。

于 2013-05-12T13:34:07.487 回答