<!-- ImageView 根据内容适应宽度 -->
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@mipmap/ic_launcher"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_launcher"/>
<!-- ImageView 限制宽度 -->
<ImageView
android:layout_width="160dp"
android:layout_height="80dp"
android:background="@mipmap/ic_launcher"/>
<ImageView
android:layout_width="160dp"
android:layout_height="80dp"
android:src="@mipmap/ic_launcher"/>
<!-- ImageView 有图片有背景 -->
<ImageView
android:layout_width="160dp"
android:layout_height="80dp"
android:background="#ffc"
android:src="@mipmap/ic_launcher"/>