在清单中定义 sdk 版本后,色带解决方案被终止
读者可以参考这个问题: 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 /leaf?id=0B6Y0F7DEUPbPZTM5MDU0YzAtNjJiYi00NTU0LTlmNTAtMWJiZTJhNjBhYjA3&hl=fr
或(压缩)
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:
And the project files if it can help:
https://docs.google.com/leaf?id=0B6Y0F7DEUPbPZTM5MDU0YzAtNjJiYi00NTU0LTlmNTAtMWJiZTJhNjBhYjA3&hl=fr
or (zipped)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就是我使用的,并且我已经通过 API 11 使用过。
This is what I use and I have used thru API 11.