无法动态设置样式的解决方法

发布于 2024-12-08 14:42:30 字数 454 浏览 0 评论 0原文

我需要能够做这样的事情:

if(condition){
textview.setStyle(R.styles.a1);
}else{
textview.setStyle(R.styles.a2);
}

问题是你不能在运行时更改样式,有像 setTextApperience 和类似的方法,但不能用于设置样式。 我的问题是如何根据主题为其他视图的文本视图设置不同的背景,例如在 themeA 中,id=tv1 的 textview 的颜色为蓝色,对于 themeB,id=tv1 的 textview 的颜色为红色。 ..

我知道论坛上讨论了这个问题,但我找不到我需要的东西

Edit1: 我知道我可以在运行时设置主题 somebackground...

但我的问题是如何为某些特定元素的不同主题设置不同的背景,比如说 id=textview1 的元素

I need to be able to do something like this:

if(condition){
textview.setStyle(R.styles.a1);
}else{
textview.setStyle(R.styles.a2);
}

the thing is you can't change the style at runtime, there is methods like setTextApperience and similar but not for setting the style.
My question is how to set different backgrounds for the textview of some other view according to a theme, for example in themeA the color of the textview with id=tv1 is blue and for themeB the color of the textview with id=tv1 is red...

I know that this things are discussed on the forum but I couldn't find the thing I need

Edit1:
I know that I can set a theme at runtime

somebackground...

But my problem is how to set different backgorund for different theme for some specific element , let say element with id=textview1

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晨敛清荷 2024-12-15 14:42:30

您无法设置样式,因为他们没有定义这样的方法。
但您可以在 xml 文件中创建不同的主题并在运行时进行更改

,例如

setTheme(android.R.style.Theme_Dark);

,以样式制作主题并像这样使用

编辑:

您可以像这样设置背景和文本颜色

if(condition){
    textview.setBackground(Color.Grey);
    textview.setTextColor(Color.Black);
}else{
    textview.setBackground(Color.Blue);
    textview.setTextColor(Color.White);
}

或检查此帖子答案 如何在运行时更改 TextView 的样式

you can't set the style because their is no such method was defined.
but you can create the different theme in xml file and change at runtime

for e.g.

setTheme(android.R.style.Theme_Dark);

so make theme in style and used like this way

Edit:

you can set the background and textcolor like this way

if(condition){
    textview.setBackground(Color.Grey);
    textview.setTextColor(Color.Black);
}else{
    textview.setBackground(Color.Blue);
    textview.setTextColor(Color.White);
}

or check this post answer How to change a TextView's style at runtime

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文