Android 更改 new ProgressBar() 的主题
我想要更改仅一个 ProgressBar
的主题,因此更改全局主题不能一个选项。
现有代码:
ProgressBar pb = new ProgressBar(context);
((LinearLayout) v).addView(pb,0);
它可以工作,没有错误,但使用默认它们。我怎样才能改变这一点?
I want to change the theme of just ONE ProgressBar
so changing the global theme is not an option.
Existing code:
ProgressBar pb = new ProgressBar(context);
((LinearLayout) v).addView(pb,0);
It works, no errors, but uses the default them. How can I change that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用不同的构造函数来设置样式:
如果您想自定义实际外观(颜色、大小等),请使用:
Use a different constructor to set the style:
And if you want to customize the actual appearance (colors, size, etc.) use this: