我有这个可绘制的资源:
<?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 bug?我在我的HTC Desire Android 2.3上运行它。
答案 0 :(得分:6)