这是我的问题:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/my_image"
android:layout_width="32dp"
android:layout_height="32p"
android:padding="10dp"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"/>
</RelativeLayout>
RelativeLayout中的My ImageView不会显示任何填充。它显示为填充为0dp。我需要在右下角有这个图像,它需要有一些填充。我能做些什么来实现这个目标?
答案 0 :(得分:0)
1)确保不要将填充与边距混淆。
2)将32p更改为32dp
3)如果要将宽度/高度设置为32dp,并将填充设置为10dp,则由于使用固定图像尺寸设置的填充,图像的宽度和高度仅为12do。
4)请记住,如果你设置的填充太大,你的图像甚至可能不显示。