gpt4 book ai didi

android - 可能 overdraw : Root element paints background i can't resolve

转载 作者:行者123 更新时间:2023-11-29 15:55:18 25 4
gpt4 key购买 nike

你好,我有这个简单的观点:

<?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 "

关于android - 可能 overdraw : Root element paints background i can't resolve,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28368646/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com