我在摩托罗拉Defy Plus设备上遇到了一个奇怪的问题。
我得到了一个带有TabHost的简单布局,其中包含一个ImageView作为其中所有选项卡的背景图像。
出于某些奇怪的原因,特别是在摩托罗拉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>
谢谢!
答案 0 :(得分:4)
摩托罗拉Defy的图像分辨率可能过高。如果您不想降低其他设备的分辨率,只需将较低分辨率的图像放在较小/低密度屏幕的可绘制文件夹中。
我最近在华为Ideos X5上遇到了类似的问题。我在同一个屏幕上有2个ImageView,一个很好,另一个是黑色。我注意到反抗图像的分辨率明显高于其他图像。在降低了所述图像的分辨率之后,肯定会有挑衅的图像不再蔑视我。
*对不起,我很享受使用'Defy'这个词太多了。