这是我的xml。我想避免的图形布局中的图像之间存在间隙。我希望所有图像以这样的方式相互对齐,使 5 个图像看起来像一个图像。
<LinearLayout
android:id="@+id/linearInteractTab"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:weightSum="5"
android:layout_margin="5dp" >
<ImageView
android:id="@+id/imgCall"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:src="@drawable/call" />
<ImageView
android:id="@+id/imgMsg"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="@drawable/mail" />
<ImageView
android:id="@+id/imgComment"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="@drawable/chat" />
<ImageView
android:id="@+id/imgDir"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="@drawable/direction" />
<ImageView
android:id="@+id/imgAppt"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="@drawable/calender" />
</LinearLayout>