我想在android上显示一个png图像。这是图像文件:
右端比左端暗一点。
但是在 android 应用程序上丢失的图像质量(使用 ImageView):
请注意红框内的部分。颜色变化不是很顺畅。
但是如果我使用我的安卓手机的浏览器,它会很好玩(所以这不是手机屏幕的原因):
这是我的 android 代码,非常简单:
<?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">
<ImageView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/hhh"/>
</LinearLayout>
hhh
我在这里发布的第一张图片在哪里,在res/drawable
.
我在我的安卓手机(安卓2.3.6)和安卓模拟器(安卓2.2/2.3/4.0)上测试,都显示不好。但它在我的 android pad(android 4.0.3)上玩得很好。
有什么问题,如何解决?