可能透支:我无法解析的根元素绘制背景

Possible overdraw: Root element paints background i can't resolve

你好,我有这个简单的看法:

<?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/lavagna_verticale"
     android:orientation="vertical" > 
     
      <TextView
          android:id="@+id/voto_lavagna"
          android:layout_width="235sp"
          android:layout_height="wrap_content"
          android:layout_centerHorizontal="true"
            android:layout_centerVertical="true"
          android:gravity="center"
          android:textColor="@color/bianco"
          android:textSize="30sp"
          android:textStyle="bold"/>       
</RelativeLayout>

我可以将图像显示到背景中,一切正常,但需要进行 lint 检查:

Possible overdraw: Root element paints background @drawable/lavagna_verticale with a 
 theme that also paints a background (inferred theme is @android:style/Theme.Holo)

我创建了一个新样式:

    <style name="SfondoLavagnaVerticale" parent="@style/Theme.AppCompat">
        <item name="android:background">@drawable/lavagna_verticale</item>
 </style>

并改变我的看法:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     android:theme="@style/SfondoLavagnaVerticale"
     android:orientation="vertical" > 
  ..
  ....
  .....

现在我没有来自 lint 的错误,但我无法显示我的图像我能做什么?

替换

android:theme="@style/SfondoLavagnaVerticale"

style="@style/SfondoLavagnaVerticale"

在你的 RelativeLayout

解决 lint 错误。跳到这里"Possible overdraw: Root element paints background "