안녕하세요 ^^
버튼을 다닥다닥 붙일려고 하는데 패딩과 마진을 0으로 해도 안되네요;
-로 하면 되긴 되는데 이러면 안드로이드 기종마다 다 다르게 보이지 않나요?(화면비율이 다르니;)

<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="72dp"
android:layout_below="@+id/appbar"
android:layout_centerHorizontal="true"
android:layout_above="@+id/tableRow"
android:padding="0dp">
<ImageButton
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:id="@+id/imageButton"
android:layout_weight="1"
android:layout_margin="0dp"/>
<ImageButton
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:id="@+id/imageButton2"
android:layout_weight="1" />
<ImageButton
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:id="@+id/imageButton3"
android:layout_weight="1" />
<ImageButton
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:id="@+id/imageButton4"
android:layout_weight="1" />
</LinearLayout>