2013-04-10 61 views
5

我有這樣的繪製資源:TILEMODE重複行不通

<?xml version="1.0" encoding="utf-8"?> 
<bitmap xmlns:android="http://schemas.android.com/apk/res/android" 
    android:src="@drawable/bg_stripe" 
    android:tileMode="repeat" 
    android:antialias="true" 
    android:dither="false" 
    android:filter="false" 
    android:gravity="left" 
/> 

用作背景的位置:

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:background="@drawable/bg_world_locked" > 

有時候一切正常,有時不(提拉資源出現在其真正的小尺寸,而不是重複)。爲什麼?這是一個Android錯誤?我在HTC Desire Android 2.3上運行這個。

回答

5

不幸的是 - 這是Android的錯誤。檢查這個答案

Tiled drawable sometimes stretches

總之:你應該設置在Java代碼而不是XML重複。

+0

我希望這不是一個錯誤,反正謝謝! – VanDir 2013-04-10 12:43:08