ImageView在摩托罗拉Defy上是黑色的
摩托罗拉Defy Plus设备出现了一个奇怪的问题。
我用一个包含ImageView的TabHost获得了一个简单的布局,作为其中所有选项卡的背景图像。
出于一些奇怪的原因,特别是在摩托罗拉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>
谢谢!
摩托罗拉Defy的图像分辨率可能太高。 如果您不想降低其他设备的分辨率,只需将较低分辨率的图像放在较小/低密度屏幕的可绘制文件夹中即可。
我最近在华为Ideos X5上遇到过类似的问题。 我在同一个屏幕上有两个ImageViews,一个很好,另一个是黑色的。 我注意到,违抗图像的分辨率明显高于其他图像。 在降低了所述图像的分辨率后,果然,这个挑衅的图像不会再违抗我了。
*对不起,我很喜欢用'Defy'这个词。
链接地址: http://www.djcxy.com/p/36747.html