我有以下布局
<?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不会像我期望的那样扩展。
任何能够提供帮助的人
答案 0 :(得分: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>
答案 1 :(得分: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" />