在清单中定义sdk-version后,色带绑定解决方案被杀死

时间:2011-05-17 09:20:47

标签: android background gradient shape

读者可以参考这个问题:android:dither="true" does not dither, what's wrong?

我也有颜色条带...解决方案是创建一个别名(在xml中),对于带有渐变的png图像,将抖动设置为“true”。 直到我在清单文件<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="8" />中指定了SDK版本 ...

使用Android 1.6(API级别4)和皮肤WVGA800

在模拟器上重新出现色带

有人可以解释我为什么!?

项目文件:https://rapidshare.com/files/3429393846/Dithering.zip

-

我的布局和目标到它的背景(别名与抖动):

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/d_gradient_grey_dither">
<TextView  
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="@string/hello"
    />
</LinearLayout>

背景(d_gradient_grey_dither.xml):

<?xml version="1.0" encoding="utf-8"?>
<bitmap
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:src="@drawable/d_gradient_grey"
    android:antialias="true"
    android:dither="true"/>

清单文件:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.test"
      android:versionCode="1"
      android:versionName="1.0">


    <application android:icon="@drawable/icon" android:label="@string/app_name">
        <activity android:name=".Main"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

    </application>

    <uses-sdk android:minSdkVersion="4" android:targetSdkVersion="8" />

</manifest>

在此处查看结果:

https://docs.google.com/document/d/1XNlR9DvXRvoyFYWVOe9wMARq0E60fkbrBy9ANADvPw4/edit?hl=fr&authkey=COvrv9EG

项目文件是否可以提供帮助:

https://docs.google.com/leaf?id=0B6Y0F7DEUPbPZTM5MDU0YzAtNjJiYi00NTU0LTlmNTAtMWJiZTJhNjBhYjA3&hl=fr

或(压缩)

https://rapidshare.com/files/3429393846/Dithering.zip

1 个答案:

答案 0 :(得分:3)

这是我使用的,我通过API 11使用。

/** -- Eliminates color banding -- **/

@Override
public void onAttachedToWindow() {
super.onAttachedToWindow();
Window window = getWindow();
window.setFormat(PixelFormat.RGBA_8888);
}