Android 4.4不采摘背景图片
我有一个索尼Xperia Z2的Android 4.4.2,并没有显示linearlayout的背景图片,而不是它看起来是白色的背景。 这个背景在模拟器和Android 4.2及更低版本的3种不同设备中完美显示。 该图像存储在所有可绘制的文件夹中(drawable-xxhdpi,drawable-xhdpi ..)XML如下所示:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res/com.devadvance.circulartest"
xmlns:tools="http://schemas.android.com/tools"
xmlns:android1="http://schemas.android.com/apk/res/android"
android:id="@+id/ScrollView04"
android:layout_width="fill_parent"
android1:layout_height="wrap_content"
android1:background="@drawable/fondosolo"
tools:ignore="NewApi,UnusedNamespace" >
<LinearLayout
android:id="@+id/layoutrutinaactor"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android1:background="@drawable/fondosolo" >
<ImageView
android1:id="@+id/cabeceraactor"
android1:layout_width="wrap_content"
android1:layout_height="wrap_content"
android1:src="@drawable/cabecerastallone" />
<ImageView
android:id="@+id/imagenRutinaActor"
android:layout_width="800dp"
android:layout_height="wrap_content"
android:layout_marginLeft="-220.5dp"
android:src="@drawable/imgsyl" />
<ImageView
android1:id="@+id/imgestado"
android1:layout_width="70dp"
android1:layout_height="15dp"
android1:layout_gravity="center_horizontal"
android1:layout_marginTop="5dp"
android1:src="@drawable/indicadorimgs2" />
<ImageView
android1:id="@+id/textoactor"
android1:layout_width="fill_parent"
android1:layout_height="wrap_content"
android1:layout_marginTop="30dp"
android1:src="@drawable/textsyl" />
<Button
android1:id="@+id/btnejercicios"
android1:layout_width="fill_parent"
android1:layout_height="wrap_content"
android1:layout_marginTop="57dp"
android1:background="@drawable/btnejercicios" />
<Button
android1:id="@+id/btneliperfil"
android1:layout_width="fill_parent"
android1:layout_height="wrap_content"
android1:layout_marginTop="25dp"
android1:background="@drawable/btndieta" />
</LinearLayout>
</ScrollView>
我该如何解决这个错误?
我之前有类似的问题,并减少了图像的大小,在这里提到http://developer.android.com/guide/practices/screens_support.html,它的功能完美。
链接地址: http://www.djcxy.com/p/68559.html