Android:Imageviews之间的间距

时间:2012-11-09 06:48:20

标签: java android android-imageview

嗨我有4个图像并排我试图增加图像视图之间的间距...但它没有工作..在java中的两个setSpacing(int)... android:xml布局中的间距

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="bottom"
    android:orientation="horizontal" >
    <ImageView
        android:id="@+id/navigationImage"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="left"
        android:paddingLeft="15dp"
        android:spacing="15dp" />
    <ImageView
        android:id="@+id/streetViewImage"
        android:src="@drawable/streetview"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="left"
        android:paddingLeft="15dp"
        android:spacing="15dp" />
    <ImageView
        android:id="@+id/phoneImage"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="left"
        android:paddingLeft="20dp"
        android:paddingRight="15dp"
        android:spacing="15dp" />
</LinearLayout>

这是我的java代码

 ImageView Image = (ImageView) view.findViewById(R.id.navImage);
 Image.setImageResource(R.drawable.navigation);
 Image.setSpacing(5);

感谢任何帮助

1 个答案:

答案 0 :(得分:1)

您应该了解paddingmargin

之间的区别

Difference between padding and margin on SO