2010-05-09 119 views
2

我正在使用UI的佈局xml文件。但圖像被壓縮,質量在一定程度上已經下降。爲什麼我的圖像被壓縮?

我的代碼是這樣的:

<ImageView 
    android:layout_width="480px" 
    android:layout_height="717px" 
    android:layout_x="0px" 
    android:layout_y="45px" 
    android:scaleType="fitXY" 
    android:src="@drawable/e4" /> 

提拉實際上是480x717

這裏有什麼問題?這是由於fitXY?

+0

e4是一個PNG文件。 – Johnny 2010-05-09 10:02:40

+0

你確定你的屏幕至少是480x762嗎? – RoflcoptrException 2010-05-09 11:46:06

+0

是的,當我刪除了fitXY後,問題仍然存在 – Johnny 2010-05-09 11:47:33

回答

0

當然是。

你說你想要一些尺寸,但後來你說你想它的規模。

所以其刻度。

+0

我除去fitXY,但它仍然丟失了一些品質。 Android/ImageView中是否有其他設置可以使圖像顯示無損? – Johnny 2010-05-09 10:02:24

+0

我不知道,對不起 – 2010-05-09 10:05:29

+0

嘗試使用center作爲scaleType。請檢查下面的鏈接可用不同scaletypes: http://developer.android.com/reference/android/widget/ImageView.ScaleType.html – Karan 2010-05-09 14:04:43