我试图在同一行上添加一个EditText和一个Button,我想将80%的行提供给editText,将20%的行提供给Button。

这是我的代码:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/scrollViewChoosePlace"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:fillViewport="true" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="horizontal"
        android:weightSum="1" >

        <RelativeLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_weight="1" >

            <EditText
                android:id="@+id/et_location"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="0.8"
                android:hint="location"
                android:inputType="text" />

            <!-- android:layout_alignParentTop="true" -->

            <Button
                android:id="@+id/btn_find"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:layout_toEndOf="@id/et_location"
                android:layout_toRightOf="@id/et_location"
                android:layout_weight="0.2"
                android:text="find" />

            <fragment
                android:id="@+id/map"
                android:name="com.google.android.gms.maps.MapFragment"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_below="@+id/btn_find" />
        </RelativeLayout>
    </LinearLayout>

</ScrollView>


而且不起作用...

谢谢你的帮助

最佳答案

使用LinearLayout表示权重。您可以将weightSum设置为10,并将一个视图的权重设置为8,将另一个视图的权重设置为2。

对于您的情况:

<ScrollView...>
    <LinearLayout vertical>
        <LinearLayout horizontal weightSum=10>
            <EditText weight=8 />
            <Button weight=2 />
        </LinearLayout>
        <Fragment />
    </LinearLayout>
</ScrollView>

关于android - Android LinearLayout RelativeLayout权重,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28219012/

10-13 04:56