gpt4 book ai didi

android - 设置应用程序的主题

转载 作者:行者123 更新时间:2023-11-29 16:12:46 26 4
gpt4 key购买 nike

this教程说应用有3个主题,但没有提到如何设置我的应用的主题。
所以我的问题是如何为我的应用设置主题?
谢谢!

最佳答案

将现有主题设置为来自 SDK 源的应用

<activity android:name=".MainActivity" android:theme="@android:style/Theme.NoTitlebar" />

您可以简单地为您的应用设置主题..

设置自己的主题

而且,您还可以为您的应用创建自己的主题。为此,您必须将它放在 res/styles.xml 下的一个 xml 文件中,例如 -

<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="OwnTheme" parent="android:Theme">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">true</item>
<item name="android:backgroundDimEnabled">true</item>
</style>
</resources>

这是主题的例子。您可以像这样创建自己的主题。创建主题后,您可以在 list 文件中将其设置为您的 Activity -

<activity android:name=".ShowZoomedImage" android:theme="@style/OwnTheme"/>

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

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