MotorolaDefyPlusデバイスで奇妙な問題が発生しました。
その中のすべてのタブの背景画像としてImageViewを含むTabHostを使用した単純なレイアウトを取得しました。
奇妙な理由で、特にMotorola Defyでは、ImageViewが黒く表示されます。しかし、他のすべてのデバイスでテストしたところ、うまく機能しました。(Samsung 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>
ありがとう!