有没有办法在Android RelativeLayout中填充父减去一个固定数字?

时间:2012-06-23 02:12:24

标签: android android-relativelayout android-imagebutton fill-parent

我有一个ImageButton我希望填充其父RelativeLayout容器的宽度,但减去几个dp,因此它有一些左右填充。我尝试了fill_parent-10dp,但这会导致错误并且无法渲染。

2 个答案:

答案 0 :(得分:37)

android:layout_margin="10dp"

一起放在ImageButton上
android:layout_width="fill_parent"
android:layout_height="fill_parent"

答案 1 :(得分:5)

  1. 使用xml属性android:layout_marginLeft指定额外内容 视图左侧的空间。
  2. 使用xml属性android:layout_marginRight指定 视图右侧的额外空间。
  3. 使用xml属性android:layout_marginTop指定额外内容 视图顶部的空间。
  4. 使用xml属性android:layout_marginBottom指定 视图底部的额外空间。
  5. 使用xml属性android:layout_margin指定额外内容 视图左侧,顶部,右侧和底部的空间。
  6. 在您的情况下,您的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"