親のImageButton
コンテナに幅を埋めたいが、いくつかのRelativeLayout
を差し引いたdp
があるので、左右にパディングがあります。私は試した fill_parent-10dp
しかし、エラーが発生し、レンダリングされません。
Android:layout_margin="10dp"
と一緒にImageButtonで
Android:layout_width="fill_parent"
Android:layout_height="fill_parent"
Android:layout_marginLeft
を使用します。Android:layout_marginRight
を使用します。Android:layout_marginTop
toを使用して、ビューの上部に追加のスペースを指定します。Android:layout_marginBottom
を使用して、ビューの下部に追加のスペースを指定します。Android:layout_margin
を使用して、ビューの左側、上部、右側、および下部に追加のスペースを指定します。あなたの場合、ImageButton宣言は次のようになります
<ImageButton
Android:id="@+id/button1"
Android:layout_width="fill_parent"
Android:layout_height="fill_parent"
Android:text="Button"
Android:layout_marginLeft="15dp"
Android:layout_marginRight="15dp"
Android:src="@drawable/a"