如何 select 任何屏幕的理想图像尺寸?
How to select the ideal image size for any screen?
我正在尝试将图像插入屏幕,但是当我插入一些大图像时出现“位图太大”的错误,而当我插入像 400 x 400 像素这样的小图像时它变得模糊。
如何 select 准确的图像大小,使其看起来不错(不模糊)。
这里是代码
<?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 使用矢量图像或使用不同尺寸的光栅图像。
如果可以的话,我建议您使用矢量图,因为它更简单、更轻便,但如果您不会使用矢量图,this 会指导您。
我正在尝试将图像插入屏幕,但是当我插入一些大图像时出现“位图太大”的错误,而当我插入像 400 x 400 像素这样的小图像时它变得模糊。 如何 select 准确的图像大小,使其看起来不错(不模糊)。
这里是代码
<?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 使用矢量图像或使用不同尺寸的光栅图像。
如果可以的话,我建议您使用矢量图,因为它更简单、更轻便,但如果您不会使用矢量图,this 会指导您。