我正试图将图像插入屏幕,但当我插入一些大图像时,会出现错误";比特图像过大";当我插入一个像400 x 400像素的小图像时,它会变得模糊。如何选择准确的图像大小,使其看起来良好(不模糊(。
这是代码
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity2">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/non"
android:scaleType="centerCrop">
</ImageView>
您可以使用矢量图像,也可以为每个dpi使用不同大小的光栅图像。
如果可以的话,我建议你选择向量,因为它更简单;更轻,但如果你不能使用矢量图像,这将指导你。