TableLayoutとImageButtonsを備えたカスタムキーパッドを作成しようとしています。これまでのところ、私はこれに到達しました
しかし、明らかに、2つの連続するTableRowの間にある垂直方向の間隔を削除する際に問題が発生しています。関連するコードは次のとおりです。
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/numkeypad"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:stretchColumns="*"
android:layout_gravity="bottom"
android:visibility="visible"
android:background="@color/contents_text"
>
<TableRow
android:layout_width="wrap_content"
android:layout_height="60dp"
android:layout_weight="1"
>
<ImageButton android:id="@+id/numkeypad_1"
android:layout_height="60dp"
android:layout_weight="0.33333333333333"
android:layout_width="wrap_content"
android:src="@drawable/k1"
>
</ImageButton>
<ImageButton android:id="@+id/numkeypad_2"
android:layout_weight="0.33333333333333"
android:layout_width="wrap_content"
android:layout_height="60dp"
android:src="@drawable/k2">
</ImageButton>
<ImageButton android:id="@+id/numkeypad_3"
android:layout_weight="0.33333333333333"
android:layout_width="wrap_content"
android:layout_height="60dp"
android:src="@drawable/k3">
</ImageButton>
</TableRow>
<TableRow android:layout_width="wrap_content"
android:layout_height="60dp"
android:layout_weight="1">
<ImageButton android:id="@+id/numkeypad_4"
android:layout_weight="0.33"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:src="@drawable/k4"
>
</ImageButton>
<ImageButton android:id="@+id/numkeypad_5"
android:layout_weight="0.33"
android:layout_width="wrap_content"
android:layout_height="60dp"
android:src="@drawable/k5">
</ImageButton>
<ImageButton android:id="@+id/numkeypad_6"
android:layout_weight="0.33"
android:layout_width="wrap_content"
android:layout_height="60dp"
android:src="@drawable/k6">
</ImageButton>
</TableRow>
誰かが2つのTableRows間の垂直方向の間隔を引き起こしている原因を教えてもらえますか?どうすればそれを削除できますか?
ありがとう。