0

请看下面的代码

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

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

    <TextView 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/firstNumber"
        />

    <EditText 
        android:layout_width="match_parent"
        android:layout_height="wrap_content" 
        />

    </LinearLayout>

</LinearLayout>

在这里,文本框的大小(宽度)非常小。我正在尝试将其设置为适合剩余宽度,但如您所见,它失败了。我也用过android:weight=1。请帮忙,如何将文本框的宽度设置为剩余宽度?

4

3 回答 3

1

Maybe you need to change the horizontal LinearLayout like below. Change width to match_parent

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

and add android:weight=1 to the textview

于 2012-10-21T15:57:37.077 回答
1

尝试这个

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="#FFFFFF"
 >
<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"
    android:text="@string/firstNumber"
    android:layout_weight="0"
    />

<EditText 
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    />

</LinearLayout>

于 2012-10-21T16:24:08.043 回答
1

尝试将内部 LinearLayout 的 layout_width 设置为 match_parent

android:layout_width="match_parent"

于 2012-10-21T18:12:45.600 回答