应用情形:1、给头像添加一个边框(不一定是圆角边框,此处顺带讲解圆角边框)
2、其它涉及图像使用ImageView的情形
讲 解:设置ImageView 带必然宽度的Padding,同时设置android:adjustViewBounds 为True
<ImageView
android:id="@+id/photo"
android:layout_width="80dip"
android:layout_height="82dip"
android:layout_centerHorizontal="true"
android:layout_marginTop="10dip"
android:adjustViewBounds="true"