设置图像视图的两种方式:
第一种:
<ImageView android:layout_width="match_parent" android:layout_height="220dp" android:src="@drawable/apple" //scaleType设置图像的缩放类型 android:scaleType="fitCenter"/>
第二种:
<ImageView android:id="@+id/iv_scale" android:layout_width="match_parent" android:layout_height="220dp" />
iv_scale = findViewById(R.id.iv_scale); //设置图像视图的图形资源 iv_scale.setImageResource(R.drawable.apple); iv_scale.setScaleType(ImageView.ScaleType.CENTER);
图形视图的缩放类型