gpt4 book ai didi

Android:使用一个主题自定义所有 UI 小部件

转载 作者:搜寻专家 更新时间:2023-11-01 09:11:43 26 4
gpt4 key购买 nike

如何通过创建一种样式来自定义应用程序中的所有小部件,并通过 AndroidManifest 中的 android:theme 将其应用于应用程序?

最佳答案

这是一个可能有帮助的示例(它可能无法逐字地工作,因为我已经对其进行了调整以简化它,并展示您可以做的其他一些事情)。

在 res\values\styles.xml 中:

<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="TextColorForTheme">
<item name="android:textColor">@color/red</item>
</style>
</resources>

在 res\values\themes.xml 中:

<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="myTheme" parent="@style/android:Theme">
<item name="android:listSeparatorTextViewStyle">@style/TextColorForTheme</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowFrame">@null</item>
</style>
</resources>

然后在您的 AndroidManifest.xml 中,设置整个应用程序或单个 Activity 以使用该主题:

  <application
android:theme="@style/myTheme"
<snip>
<activity
android:theme="@style/myTheme"
<snip>

或者,您可以在代码中为您的 Java Activity 设置主题:

  @Override
public void onCreate(Bundle bundle)
{
super.onCreate(bundle);
setTheme(R.style.myTheme);
<snip>

关于Android:使用一个主题自定义所有 UI 小部件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7829101/

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