答案 0 :(得分:7)
如果您将图像作为Bitmap实例,请使用
Bitmap scaled = Bitmap.createScaledBitmap(yourBitmap, 300, 300, true);
有关位图方法的更多信息,请参见API
答案 1 :(得分:0)
您可以在图像视图中缩放图像,如下所示:
<ImageView
android:id="@+id/image"
android:layout_width="300dp"
android:layout_height="300dp"
android:scaleType="centerInside"
android:src="@drawable/your_image"/>
祝你好运,
Arkde