我在使用Motorola Defy Plus设备时遇到了一个奇怪的问题。

我得到一个带有TabHost的简单布局,其中包含一个ImageView作为其中所有选项卡的背景图像。

由于某些奇怪的原因,特别是在Motorola Defy上,ImageView显得黑了!但是我在所有其他设备上对其进行了测试,效果很好! (三星Galaxy SII,Galaxy Mini,Nexus 7)

该图像是一个常规的.jpg文件,其大小为102KB,大小为1330X1774。它位于res \ drawable文件夹中。它的名字是-“ blurtest_cropped2.jpg”

.xml布局文件如下-

<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/tabhost"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <ImageView
            android:id ="@+id/main_background_imageview"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:src="@drawable/blurtest_cropped2"
            android:scaleType="centerCrop"
            />
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >
        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" />
        <!--  Required for TabWidget -->
        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent" />
    </LinearLayout>
</TabHost>


谢谢!

最佳答案

对于Motorola Defy,图像分辨率可能过高。如果您不希望降低其他设备的分辨率,只需将较低分辨率的图像放在针对较小/低密度屏幕的可绘制文件夹中。

最近我的华为Ideos X5遇到了类似的问题。我在同一屏幕上有2个ImageView,一个很好,另一个是黑色。我注意到违抗图像的分辨率明显高于其他图像。在降低了所述图像的分辨率之后,可以肯定的是,违抗图像将不再反抗我。

*抱歉,我很喜欢使用“ Defy”一词。

10-08 18:09