我使用Android Asset Studio加載了一個圖標。
它造就了我MDPI,hdpix華電國際,xxhdpi和xxxhdpi圖標
但圖標像素化和模糊:(
下面的代碼:
Android圖標爲像素化/模糊
<?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>
Android Studio的Image Asset嚮導不是用來創建144dp的圖像。該向導更適用於操作欄圖標,通知圖標等,所有這些都小得多。 – CommonsWare
,但它創建了一個144x144的站點圖標。我如何使用它? –