我在Android Asset Studio上加载了一个图标
它创造了我mdpi,hdpix hdpi,xxhdpi和xxxhdpi图标
但图标像素化和模糊:(
这里的代码:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
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="wrap_content">
<ImageView
android:id="@+id/img"
android:layout_width="144dp"
android:layout_height="144dp"
android:layout_margin="16dp"
android:src="@mipmap/ic_launcher"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
</android.support.constraint.ConstraintLayout>
答案 0 :(得分:0)
尝试使用矢量图形。
这将缩放到您想要的任何尺寸而不会模糊。将图形保存为.SVG,然后您可以将其转换为Android Vector Drawable .XML文件(Google&#34; SVG到Vector Convertor&#34;用于转换器)。
将生成的.XML Android Vector Drawable放在res\drawable
文件夹中。