내 안드로이드 앱에는 다음과 같은 레이아웃이 있습니다.
<?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">
<fragment
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
class="com.google.android.gms.maps.SupportMapFragment"/>
<Button
android:id="@+id/button_back"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:onClick="CloseActivity"
android:padding="0dp"
android:text="@+string/back" />
</LinearLayout>
미리보기와 전화에서는 다음과 같습니다.
하단 영역의 버튼에서 볼 수 있듯이 패딩이 있습니다.
어떻게 제거하고 버튼이 바닥 영역을 완전히 채울 수 있습니까?