谁帮我看看最后两行怎么不对齐
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="horizontal"
android:layout_marginTop="10dp">
<Button
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="4"
android:gravity="bottom|end"
android:layout_weight="1"
android:background="@drawable/white_selected"
android:id="@+id/btn_4"/>
<Button
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="5"
android:gravity="bottom|right"
android:background="@drawable/white_selected"
android:layout_weight="1"
android:id="@+id/btn_5"
android:layout_marginLeft="10dp"/>
<Button
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="6"
android:background="@drawable/white_selected"
android:gravity="bottom|right"
android:layout_weight="1"
android:id="@+id/btn_6"
android:layout_marginLeft="10dp"/>
<Button
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="+"
android:background="@drawable/white_selected"
android:gravity="bottom|right"
android:layout_weight="1"
android:id="@+id/btn_add"
android:layout_marginLeft="10dp"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="horizontal"
android:layout_marginTop="10dp"
>
<LinearLayout
android:layout_weight="3"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_marginRight="10dp">
<LinearLayout android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="1"
android:background="@drawable/white_selected"
android:gravity="bottom|right"
android:layout_weight="1"
android:id="@+id/btn_1"/>
<Button android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="2"
android:background="@drawable/white_selected"
android:gravity="bottom|right"
android:layout_weight="1"
android:id="@+id/btn_2"
android:layout_marginLeft="10dp"/>
<Button android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="3"
android:background="@drawable/white_selected"
android:gravity="bottom|right"
android:layout_weight="1"
android:id="@+id/btn_3"
android:layout_marginLeft="10dp"/>
</LinearLayout>
<LinearLayout android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_marginTop="10dp">
<Button
android:layout_height="match_parent"
android:text="0"
android:background="@drawable/white_selected"
android:gravity="bottom|right"
android:layout_weight="2"
android:id="@+id/btn_0"/>
<Button
android:layout_height="match_parent"
android:text="."
android:background="@drawable/white_selected"
android:gravity="bottom|right"
android:layout_weight="1"
android:id="@+id/btn_point"
android:layout_marginLeft="10dp"/>
</LinearLayout
</LinearLayout>
<Button
android:layout_weight="1"
android:layout_height="match_parent"
android:background="@drawable/orange_selectorxml"
android:layout_gravity="bottom|right"
android:text="="
android:id="@+id/btn_equal"/>
</LinearLayout>
</LinearLayout>