2016-10-07 89 views
1

我使用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> 
+0

Android Studio的Image Asset嚮導不是用來創建144dp的圖像。該向導更適用於操作欄圖標,通知圖標等,所有這些都小得多。 – CommonsWare

+0

,但它創建了一個144x144的站點圖標。我如何使用它? –

回答

0

嘗試使用矢量圖形

這將圖形縮放爲任意大小而不會模糊,將圖形保存爲.SVG,然後將其轉換爲Android矢量可繪製.XML文件(谷歌「SVG轉換器」爲矢量轉換器)。將生成的.XML Android Vector Drawable放入res\drawable文件夾中。

+0

該工具不適用於具有漸變的矢量文件。你知道另一種方法嗎? –

+0

Vector Drawable不支持漸變,因此它不適合您。 – SimonH