以编程方式更改应用小部件背景颜色

Changing app widget background color programmatically(以编程方式更改应用小部件背景颜色)
本文介绍了以编程方式更改应用小部件背景颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何以编程方式设置主屏幕应用小部件的背景颜色?

How do I set the background color of the home screen app widget programmatically?

推荐答案

记住小部件是remoteView.您的资源非常有限,无法直接更新小部件的 UI.

Remember widget is remoteView. You have very limited resource to updates UI of widget and not directly.

你可以试试:

remoteViews.setInt(viewId, "setBackgroundColor", Color.BLACK);

我从没用过,但我想可能是这样.

I never used it but i guess it may be the way.

我猜你需要动态改变颜色.

I guess you need to change color dynamically.

这篇关于以编程方式更改应用小部件背景颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How to target newer versions in .gitlab-ci.yml using auto devops (java 11 instead of 8 and Android 31 instead of 29)(如何在.gitlab-ci.yml中使用自动开发工具(Java 11而不是8,Android 31而不是29)瞄准较新的版本)
Android + coreLibraryDesugaring: which Java 11 APIs can I expect to work?(Android+core LibraryDesugering:我可以期待哪些Java 11API能够工作?)
How to render something in an if statement React Native(如何在If语句中呈现某些内容Reaction Native)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Using Firebase Firestore in offline only mode(在仅脱机模式下使用Firebase FiRestore)
Crash on Google Play Pre-Launch Report: java.lang.NoSuchMethodError(Google Play发布前崩溃报告:java.lang.NoSuchMethodError)