ImageView
视图是屏幕上的矩形区域。有一种视图是
ImageView,用于显示图标或照片等图像。
常用属性:
android:src="@drawable/beach" //图像的存储位置
android:id="@+id/photo_image_view" //图像的ID
android:scaleType="centerCrop" //图像在屏幕上的位置
android:layout_width
//图像的宽度
android:layout_height
//图像的高度
使用Demo:
<ImageView
android:id="@+id/photo_image_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/beach" />
android:id="@+id/photo_image_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/beach" />