我有以下布局
<?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 并没有像我预期的那样扩展。
任何能够提供帮助的人