我有一個scrollview.i的xml文件想要爲背景圖像,但我嘗試了它在許多圖像大小,它pixelates ..什麼將按順序圖像的最佳尺寸使用它作爲背景?謝謝背景圖像的尺寸
Q
背景圖像的尺寸
0
A
回答
0
您是否嘗試過使用fill_parent或wrap_content?你的問題還是有點不清楚。從res文件夾中嘗試android:background =「@ drawable/ur_image」。
0
我會創造一個風格:
<style name="styBackground">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">fill_parent</item>
<item name="android:src">@drawable/default_background</item>
<item name="android:scaleType">centerCrop</item>
</style>
並將其應用到你想在後臺每個屏幕:
<ImageView
style="@style/styBackground"
/>
的centerCrop將保證它不舒展,和FILL_PARENT的導致圖像填滿屏幕,但沒有超過必要的。對於像素化,請確保您的圖像足夠大以支持市場上的最高分辨率,例如854x480。
相關問題
- 1. 調整SVG背景圖像的尺寸
- 2. 屏幕尺寸的背景圖像
- 3. Div背景圖像的最大尺寸
- 4. 背景圖像的最大尺寸CSS
- 5. 的Cocos2D V2 CCSprite背景圖像尺寸
- 6. IONIC2背景圖像的尺寸時
- 7. 獲取背景圖像的尺寸
- 8. div中的全尺寸背景圖像?
- 9. XXHDPI的Android背景圖像尺寸
- 10. 根據背景圖像尺寸div
- 11. 得到背景圖像尺寸
- 12. css背景圖像適應尺寸
- 13. 固定尺寸背景圖像
- 14. 全尺寸背景圖像col - * - *在Bootstrap
- 15. 設置背景圖像尺寸IOS
- 16. Android活動圖像背景尺寸
- 17. 如何設置UINavigation尺寸以適合背景圖像尺寸?
- 18. 尺寸背景圖片?
- 19. 背景圖片尺寸
- 20. iOS背景圖片尺寸
- 21. CSS背景圖像顯得比圖像的尺寸小很多
- 22. 燦背景圖片的最大尺寸
- 23. 網站背景圖片的尺寸
- 24. 適當尺寸的背景圖片/圖像NagivationBar的iOS
- 25. Inno CustomPage全尺寸背景圖片
- 26. RS2008背景圖片尺寸調整
- 27. 整頁背景圖片尺寸建議
- 28. CSS:全尺寸背景圖片
- 29. Jquery/CSS:全尺寸背景圖片
- 30. 離子全尺寸背景
是的我做到這一點,但我的照片是縮放 – kostas 2011-05-02 09:26:39