当我将填充 5dp 应用于 ImageView(大小 50x50)时,结果是高度和宽度为 50x50,包括填充。
如何在 Android 中解决此问题?
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#cccccc" >
<ImageView
android:id="@+id/image"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_marginBottom="8dp"
android:layout_marginLeft="8dp"
android:layout_marginRight="4dp"
android:layout_marginTop="4dp"
android:src="@drawable/user11" />
</RelativeLayout>