`
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/round" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:background="@drawable/round" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:background="@drawable/round" />
</RelativeLayout>
`当我通过 layout_alignParentRight 将图像设置在透明图像(在相对布局中定义)的右侧时,图像将放置在移动屏幕的右侧,但如果我给出图像的实际大小,则第二个图像位于末尾图像,但我不想硬编码图像的宽度。