可能的透支:根元素绘制背景

时间:2012-02-08 14:58:15

标签: android-layout

在我的应用程序中,它在Android的lints上显示此警告:

  

可能的透支:根元素绘制背景@ drawable / main with   一个也描绘背景的主题(推断主题是​​@android:风格/主题)

我想知道如何纠正这个错误,因为在检查和检查互联网后,我发现它正在降低应用程序速度,导致它重新加载两倍的背景来放置此源。

这是我的layout.xml的来源:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/main"
    android:orientation="vertical" >

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="120dp"
    android:layout_centerHorizontal="true"
    android:layout_marginLeft="20dp"
    android:text="@string/alta1"
    android:textColor="#000"
    android:textAppearance="?android:attr/textAppearanceLarge" />

<TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/textView1"
    android:layout_marginTop="20dp"
    android:layout_centerHorizontal="true"
    android:text="@string/alta2"
    android:layout_marginLeft="20dp"
    android:textColor="#000"
    android:textAppearance="?android:attr/textAppearanceSmall" />

<Button
    android:id="@+id/continuaralta"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_below="@+id/textView2"
    android:layout_marginRight="50dp"
    android:layout_marginTop="36dp"
    android:textStyle="bold"
    android:background="@drawable/boton"
    android:text="@string/continuar" />

<Button
    android:id="@+id/saliralta"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBaseline="@+id/continuaralta"
    android:layout_alignBottom="@+id/continuaralta"
    android:layout_marginRight="15dp"
    android:layout_toLeftOf="@+id/continuaralta"
    android:background="@drawable/boton"
    android:textStyle="bold"
    android:text="@string/salir" />

1 个答案:

答案 0 :(得分:6)

<{3}}的Neil Sainsbury说,Romain Guy在http://www.earthtoneil.com/处理了潜在的问题。查看Neil的博客并搜索您的错误消息。然后,转到http://android-developers.blogspot.com/2009/03/window-backgrounds-ui-speed.html,了解如何将背景主题应用于整个应用以及各个活动。

此方法至少会导致错误消息不再出现。在我的情况下,在进行修复后点击双箭头图标刷新lint窗口中的警告是必要的。