0

我有以下布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">
    <TextView 
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:text="Gross Pay"
        />
    <EditText 
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:hint="Gross Pay"
        android:inputType="numberDecimal"
        android:layout_weight="1"
        />
</LinearLayout>
<Button 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Continue"
    />

</LinearLayout>

如您所见,我已经尝试了所有我能想到的让 EditText 占据屏幕的其余部分的方法,但是,我仍然没有做正确的事情。它在 Eclipse 中看起来不错,但是当我在模拟器中运行时,EditText 并没有像我预期的那样扩展。

任何能够提供帮助的人

4

2 回答 2

0

试试这个..如果你给权重1意味着你需要给你想要匹配父母的0dp..

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">
    <TextView 
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:text="Gross Pay"
        />
    <EditText 
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:hint="Gross Pay"
        android:inputType="numberDecimal"
        android:layout_weight="1"
        />
</LinearLayout>
于 2013-10-11T16:03:37.703 回答
0

涂料!发现这是一个片段,我不得不改变......

<fragment android:name="com.example.manageyobudget.fragment.GeneralTaxInformationFragment"
        android:id="@+id/list"
        android:layout_width="wrap_content"
        android:layout_height="match_parent" />

<fragment android:name="com.example.manageyobudget.fragment.GeneralTaxInformationFragment"
        android:id="@+id/list"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
于 2013-10-11T16:08:58.577 回答