gpt4 book ai didi

android - 如何允许用户在 android ListView 中选择主题?

转载 作者:搜寻专家 更新时间:2023-11-01 08:17:11 25 4
gpt4 key购买 nike

我有一个带有两个标签的 ListView ,标题和副标题。我想将深色和浅色背景作为用户选项。标题有 textAppearanceMedium,副标题有 textAppearanceSmall。我希望样式 MyTheme.Dark 具有白色文本,而 MyTheme.Light 具有黑色文本。有没有办法为同一个 TextView 小部件定义多个 textAppearance 属性?

<style name="MyTheme.Dark">
<item name="android:windowBackground">@color/black</item>
<item name="android:colorBackground">@color/black</item>
<item name="android:background">@color/black</item>
<item name="android:divider">@color/white</item>
--cannot put textAppearance here since it is different for title and subtitle
</style>

最佳答案

供将来引用...

在 values/themes.xml 中:

<style name="MyTheme.Dark">
<item name="textColorTitle">@color/white</item>
</style>
<style name="MyTheme.Light">
<item name="textColorTitle">@color/black</item>
</style>

在值/attrs.xml 中:

<?xml version="1.0" encoding="utf-8"?>
<resources>
<attr
name="textColorTitle"
format="reference|color" />
</resources>

在 layout/my_list_row.xml 中,使用 textColorTitle 值作为文本颜色,如下所示:

android:textColor="?textColorTitle"

如果它不起作用,请告诉我。它对我有用。

关于android - 如何允许用户在 android ListView 中选择主题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3016844/

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