在清单中定义 sdk 版本后,色带解决方案被终止

发布于 2024-11-08 02:02:58 字数 2984 浏览 4 评论 0原文

读者可以参考这个问题: android:dither="true " 不抖动,出了什么问题?

我也有色带...解决方案是为带有渐变的 png 图像创建一个别名(在 xml 中),并将抖动设置为“true”。 这一直有效,直到我在清单文件中指定了 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

The reader can refer to this question: android:dither="true" does not dither, what's wrong?

I had color banding too... The solution was to create an alias (in xml) with dither set to "true" for my png images with gradients. This worked until I specified the SDK version in my manifest file <uses-sdk android:minSdkVersion="4" android:targetSdkVersion="8" />...

Color banding reappeared on emulator with Android 1.6 (API level 4) and skin WVGA800

Does somebody can explain me why !?

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

--

My layout and the target to its background (alias with dithering):

<?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>

The background (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"/>

The manifest file:

<?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>

See the result here:

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

And the project files if it can help:

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

or (zipped)

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寄风 2024-11-15 02:02:58

这就是我使用的,并且我已经通过 API 11 使用过。

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

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

This is what I use and I have used thru API 11.

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

@Override
public void onAttachedToWindow() {
super.onAttachedToWindow();
Window window = getWindow();
window.setFormat(PixelFormat.RGBA_8888);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文