gpt4 book ai didi

android - 如何设置android应用程序的背景?

转载 作者:IT老高 更新时间:2023-10-28 23:38:07 26 4
gpt4 key购买 nike

我想更改我的应用 Activity 的背景。

现在黑色可用,我想用一些图像或主题来改变它。

最佳答案

android:theme="@style/Theme.AppTheme 属性添加到 list 文件中您要使用的主题的应用程序标签中。这将防止默认的“黑色”背景如果您只在 Activity/Fragment 布局文件中设置背景,则会被绘制。

您在 style.xml 文件中声明了它。

<?xml version="1.0" encoding="utf-8"?>
<resources>
<!--
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
-->
<style name="AppBaseTheme" parent="@style/Theme">
<!--
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
-->
</style>
</style>
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
<item name="android:windowBackground">@drawable/custom_background</item>
</style>

</resources>

AndroidManifest.xml 文件

...
<application
android:name="@string/app_name"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/Theme.AppTheme">
...

关于android - 如何设置android应用程序的背景?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5479977/

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