2

我有这个 ImageView

<ImageView
    android:id="@+id/img_1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:src="@drawable/my_img_1" />

它是 a 的孩子RelativeLayoutpage我希望图像与/的左上角齐平parent。但事实并非如此。在父视图的左上角和子视图之间有about 20dp margin/ 。padding我怎样才能得到我想要的?

4

1 回答 1

1

你所期望的就是应该发生的。

听起来控股RelativeLayout有 20dp 的填充 - 这会导致你描述的行为。

确保你已经从你的父母那里移除了填充物RelativeLayout

于 2013-07-03T18:13:52.370 回答