gpt4 book ai didi

安卓 overdraw 背景。怎么设置正确?

转载 作者:行者123 更新时间:2023-11-29 00:25:38 26 4
gpt4 key购买 nike

我知道有很多主题有相同的请求,但我无法为我的应用程序修复后台问题。如果我这样写代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="top|center"
android:orientation="vertical"
android:background:"@drawable/wallpaper>

我收到错误 Lint:“Possible overdraw: Root element paints the background....

所以我改变了这个:

style.xml

<style name="AppTheme" parent="@android:style/Theme.Holo">
<item name="android:windowBackground">@null</item>
</style>

<style name="WallpaperTheme" parent="@style/AppTheme">
<item name="android:background">@drawable/wallpaper</item>
</style>

list .xml

<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:hardwareAccelerated="true"
android:allowBackup="true"
android:theme="@style/AppTheme">
<activity
android:name=".Main"
android:label="@string/title_activity_main"
android:theme="@style/WallpaperTheme">
...
...
</activity>

这样就不再收到错误Lint但是应用的布局是错误的,例如: image按钮也没有遵循正确的布局......那我该怎么办?

最佳答案

我傻了!我这样改了代码,不再出现Lint的错误:

样式.xml:

<style name="AppTheme" parent="@android:style/Theme.Holo">
<item name="android:windowBackground">@null</item>
</style>

list .xml

<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:hardwareAccelerated="true"
android:allowBackup="true"
android:theme="@style/AppTheme">
<activity
android:name=".Main"
android:label="@string/title_activity_main">
...
...
</activity>

layout.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="top"
android:orientation="vertical"
android:background="@drawable/wallpaper">

关于安卓 overdraw 背景。怎么设置正确?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19767898/

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