为什么网格布局在右边留下空白?
代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:layout_gravity="bottom"
tools:context="kitchen.test.com.test.MainActivity">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/tf1"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/cf1"
android:id="@+id/cf1"/>
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:rowCount="3"
android:columnCount="3"
tools:context="kitchen.test.com.test.CalcActivity">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/one"
android:id="@+id/one"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/two"
android:id="@+id/two"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/thr"
android:id="@+id/thr"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/fur"
android:id="@+id/fur"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/fiv"
android:id="@+id/fiv"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/six"
android:id="@+id/six"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/sev"
android:id="@+id/sev"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/eig"
android:id="@+id/eig"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/nin"
android:id="@+id/nin"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/zer"
android:id="@+id/zer"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/plu"
android:id="@+id/plu"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/min"
android:id="@+id/min"/>
</GridLayout>
</LinearLayout>
我的形象,